diff --git a/.golangci.yml b/.golangci.yml index fd975b2d..b421c1fe 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -1,8 +1,12 @@ run: modules-download-mode: vendor -# Run only staticcheck for now. Additional linters will be enabled one-by-one. -linters: - enable: - - staticcheck - disable-all: true +issues: + exclude-rules: + - path: _test.go + linters: + - errcheck + +linters-settings: + errcheck: + exclude: scripts/errcheck_excludes.txt diff --git a/scripts/errcheck_excludes.txt b/scripts/errcheck_excludes.txt new file mode 100644 index 00000000..2cadaa53 --- /dev/null +++ b/scripts/errcheck_excludes.txt @@ -0,0 +1,2 @@ +// Used in HTTP handlers, any error is handled by the server itself. +(net/http.ResponseWriter).Write