Update golangci-lint config (#2722)
* Migrate from Python codespell to golangci-lint misspell. * Inline errcheck exclude list in the golangci-lint config. Signed-off-by: Ben Kochie <superq@gmail.com>
This commit is contained in:
parent
d1b634fb80
commit
a11de2ede5
|
@ -28,13 +28,6 @@ jobs:
|
|||
- checkout
|
||||
- run: uname -a
|
||||
- run: make test-e2e
|
||||
codespell:
|
||||
docker:
|
||||
- image: circleci/python
|
||||
steps:
|
||||
- checkout
|
||||
- run: sudo pip install codespell
|
||||
- run: codespell --skip=".git,./vendor,ttar,go.mod,go.sum,*pem,./collector/fixtures" -I scripts/codespell_ignore.txt
|
||||
test_mixins:
|
||||
executor: golang
|
||||
steps:
|
||||
|
@ -105,10 +98,6 @@ workflows:
|
|||
filters:
|
||||
tags:
|
||||
only: /.*/
|
||||
- codespell:
|
||||
filters:
|
||||
tags:
|
||||
only: /.*/
|
||||
- test_docker:
|
||||
requires:
|
||||
- test
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
linters:
|
||||
enable:
|
||||
- misspell
|
||||
- revive
|
||||
disable:
|
||||
# Disable soon to deprecated[1] linters that lead to false
|
||||
|
@ -19,4 +20,8 @@ issues:
|
|||
|
||||
linters-settings:
|
||||
errcheck:
|
||||
exclude: scripts/errcheck_excludes.txt
|
||||
exclude-functions:
|
||||
# Used in HTTP handlers, any error is handled by the server itself.
|
||||
- (net/http.ResponseWriter).Write
|
||||
# Never check for logger errors.
|
||||
- (github.com/go-kit/log.Logger).Log
|
||||
|
|
|
@ -1,6 +0,0 @@
|
|||
inflight
|
||||
packages\'
|
||||
ro
|
||||
siz
|
||||
uint
|
||||
uptodate
|
|
@ -1,4 +0,0 @@
|
|||
// Used in HTTP handlers, any error is handled by the server itself.
|
||||
(net/http.ResponseWriter).Write
|
||||
// Never check for logger errors.
|
||||
(github.com/go-kit/log.Logger).Log
|
Loading…
Reference in New Issue