diff options
Diffstat (limited to '.golangci.toml')
-rw-r--r-- | .golangci.toml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.golangci.toml b/.golangci.toml index 97c1f7fb..74cd03bb 100644 --- a/.golangci.toml +++ b/.golangci.toml @@ -11,9 +11,15 @@ enable = [ "errorlint", # check to ensure no problems with wrapped errors "gocritic", # check for bugs, performance, and style issues "gofmt", # check that gofmt is satisfied + "aerc", # aerc specific linters ] [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 + +[linters-settings.custom.aerc] +path = "./linters.so" +description = "Aerc specific linters" +original-url = "git.sr.ht/~rjarry/aerc/contrib" |