warn on intrange, usestdlibvars
This commit is contained in:
parent
ad40b92b6a
commit
ed56428dd7
1 changed files with 13 additions and 7 deletions
|
@ -9,11 +9,9 @@ linters:
|
||||||
- contextcheck
|
- contextcheck
|
||||||
- exportloopref
|
- exportloopref
|
||||||
- gocheckcompilerdirectives
|
- gocheckcompilerdirectives
|
||||||
# FIXME: for some reason this errors on windows
|
- gofmt
|
||||||
# - gofmt
|
- goimports
|
||||||
# - goimports
|
- intrange
|
||||||
# TODO: disable for now
|
|
||||||
# - intrange
|
|
||||||
- misspell
|
- misspell
|
||||||
- nilerr
|
- nilerr
|
||||||
- nolintlint
|
- nolintlint
|
||||||
|
@ -21,7 +19,15 @@ linters:
|
||||||
- testifylint
|
- testifylint
|
||||||
- unconvert
|
- unconvert
|
||||||
- unused
|
- unused
|
||||||
# TODO: bmizerany says no :(
|
|
||||||
# - usestdlibvars
|
|
||||||
- wastedassign
|
- wastedassign
|
||||||
- whitespace
|
- whitespace
|
||||||
|
- usestdlibvars
|
||||||
|
severity:
|
||||||
|
default-severity: error
|
||||||
|
rules:
|
||||||
|
- linters:
|
||||||
|
- gofmt
|
||||||
|
- goimports
|
||||||
|
- intrange
|
||||||
|
- usestdlibvars
|
||||||
|
severity: info
|
||||||
|
|
Loading…
Reference in a new issue