warn on intrange, usestdlibvars

This commit is contained in:
Michael Yang 2024-06-04 11:51:39 -07:00
parent ad40b92b6a
commit ed56428dd7

View file

@ -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