go vet has been removed from the lint step as it is run by the new linter. Signed-off-by: Moritz Poldrack <moritz@poldrack.dev> Acked-by: Robin Jarry <robin@jarry.cc>main
parent
70bfcfef42
commit
57de50b7d4
@ -0,0 +1,19 @@
|
||||
[run]
|
||||
# include notmuch codes
|
||||
build-tags = ["notmuch"]
|
||||
# don't lint tests
|
||||
tests = false
|
||||
|
||||
# enable additional linters
|
||||
[linters]
|
||||
enable = [
|
||||
"nolintlint", # nolint comments require justification
|
||||
"errorlint", # check to ensure no problems with wrapped errors
|
||||
"gocritic", # check for bugs, performance, and style issues
|
||||
"gofmt", # check that gofmt is satisfied
|
||||
]
|
||||
|
||||
[linters-settings.nolintlint]
|
||||
allow-unused = false # don't allow nolint if not required
|
||||
require-explanation = true # require an explanation when disabling a linter
|
||||
requre-specific = true # linter exceptions must specify the linter
|
Loading…
Reference in new issue