Skip to content

Commit 838684c

Browse files
authored
build(deps): bump github.com/tdakkota/asciicheck from 0.4.1 to 0.5.0 (#6018)
1 parent c8f5c9f commit 838684c

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

docs/data/linters_info.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"name": "asciicheck",
2222
"desc": "checks that all code identifiers does not have non-ASCII symbols in the name",
2323
"loadMode": 8199,
24-
"originalURL": "https://github.com/tdakkota/asciicheck",
24+
"originalURL": "https://github.com/golangci/asciicheck",
2525
"internal": false,
2626
"isSlow": false,
2727
"since": "v1.26.0"

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ require (
4646
github.com/go-viper/mapstructure/v2 v2.4.0
4747
github.com/go-xmlfmt/xmlfmt v1.1.3
4848
github.com/gofrs/flock v0.12.1
49+
github.com/golangci/asciicheck v0.5.0
4950
github.com/golangci/dupl v0.0.0-20250308024227-f665c8d69b32
5051
github.com/golangci/go-printf-func-name v0.1.0
5152
github.com/golangci/gofmt v0.0.0-20250106114630-d62b90e6713d
@@ -112,7 +113,6 @@ require (
112113
github.com/ssgreg/nlreturn/v2 v2.2.1
113114
github.com/stbenjam/no-sprintf-host-port v0.2.0
114115
github.com/stretchr/testify v1.10.0
115-
github.com/tdakkota/asciicheck v0.4.1
116116
github.com/tetafro/godot v1.5.1
117117
github.com/timakin/bodyclose v0.0.0-20241222091800-1db5c5ca4d67
118118
github.com/timonwong/loggercheck v0.11.0

go.sum

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pkg/golinters/asciicheck/asciicheck.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package asciicheck
22

33
import (
4-
"github.com/tdakkota/asciicheck"
4+
"github.com/golangci/asciicheck"
55

66
"github.com/golangci/golangci-lint/v2/pkg/goanalysis"
77
)

pkg/lint/lintersdb/builder_linter.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ func (LinterBuilder) Build(cfg *config.Config) ([]*linter.Config, error) {
151151

152152
linter.NewConfig(asciicheck.New()).
153153
WithSince("v1.26.0").
154-
WithURL("https://github.com/tdakkota/asciicheck"),
154+
WithURL("https://github.com/golangci/asciicheck"),
155155

156156
linter.NewConfig(bidichk.New(&cfg.Linters.Settings.BiDiChk)).
157157
WithSince("v1.43.0").

0 commit comments

Comments
 (0)