You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3
Original file line number
Diff line number
Diff line change
@@ -204,6 +204,7 @@ and the following linters are disabled by default:
204
204
$ golangci-lint help linters
205
205
...
206
206
Disabled by default linters:
207
+
asciicheck: Simple linter to check that your code does not contain non-ASCII identifiers [fast: true, auto-fix: false]
207
208
bodyclose: checks whether HTTP response body is closed successfully [fast: true, auto-fix: false]
208
209
depguard: Go linter that checks if package imports are in a list of acceptable packages [fast: true, auto-fix: false]
209
210
dogsled: Checks assignments with too many blank identifiers (e.g. x, _, _, _, := f()) [fast: true, auto-fix: false]
@@ -470,6 +471,7 @@ golangci-lint help linters
470
471
- [goconst](https://github.com/jgautheron/goconst) - Finds repeated strings that could be replaced by a constant
471
472
- [gocyclo](https://github.com/alecthomas/gocyclo) - Computes and checks the cyclomatic complexity of functions
472
473
- [gocognit](https://github.com/uudashr/gocognit) - Computes and checks the cognitive complexity of functions
474
+
- [asciicheck](https://github.com/tdakkota/asciicheck) - Simple linter to check that your code does not contain non-ASCII identifiers
473
475
- [gofmt](https://golang.org/cmd/gofmt/) - Gofmt checks whether code was gofmt-ed. By default this tool runs with -s option to check for code simplification
474
476
- [goimports](https://godoc.org/golang.org/x/tools/cmd/goimports) - Goimports does everything that gofmt does. Additionally it checks unused imports
475
477
- [maligned](https://github.com/mdempsky/maligned) - Tool to detect Go structs that would take less memory if their fields were sorted
@@ -1279,6 +1281,7 @@ Thanks to developers and authors of used linters:
0 commit comments