Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/data/linters_info.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"name": "asciicheck",
"desc": "checks that all code identifiers does not have non-ASCII symbols in the name",
"loadMode": 8199,
"originalURL": "https://github.com/tdakkota/asciicheck",
"originalURL": "https://github.com/golangci/asciicheck",
"internal": false,
"isSlow": false,
"since": "v1.26.0"
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ require (
github.com/go-viper/mapstructure/v2 v2.4.0
github.com/go-xmlfmt/xmlfmt v1.1.3
github.com/gofrs/flock v0.12.1
github.com/golangci/asciicheck v0.5.0
github.com/golangci/dupl v0.0.0-20250308024227-f665c8d69b32
github.com/golangci/go-printf-func-name v0.1.0
github.com/golangci/gofmt v0.0.0-20250106114630-d62b90e6713d
Expand Down Expand Up @@ -112,7 +113,6 @@ require (
github.com/ssgreg/nlreturn/v2 v2.2.1
github.com/stbenjam/no-sprintf-host-port v0.2.0
github.com/stretchr/testify v1.10.0
github.com/tdakkota/asciicheck v0.4.1
github.com/tetafro/godot v1.5.1
github.com/timakin/bodyclose v0.0.0-20241222091800-1db5c5ca4d67
github.com/timonwong/loggercheck v0.11.0
Expand Down
4 changes: 2 additions & 2 deletions go.sum

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pkg/golinters/asciicheck/asciicheck.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package asciicheck

import (
"github.com/tdakkota/asciicheck"
"github.com/golangci/asciicheck"

"github.com/golangci/golangci-lint/v2/pkg/goanalysis"
)
Expand Down
2 changes: 1 addition & 1 deletion pkg/lint/lintersdb/builder_linter.go
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ func (LinterBuilder) Build(cfg *config.Config) ([]*linter.Config, error) {

linter.NewConfig(asciicheck.New()).
WithSince("v1.26.0").
WithURL("https://github.com/tdakkota/asciicheck"),
WithURL("https://github.com/golangci/asciicheck"),

linter.NewConfig(bidichk.New(&cfg.Linters.Settings.BiDiChk)).
WithSince("v1.43.0").
Expand Down
Loading