Updated golangci.yml

This commit is contained in:
Kirill Muratov 2019-03-28 19:30:02 +03:00
parent 81f457f379
commit 46ee425bac
1 changed files with 16 additions and 1 deletions

View File

@ -7,13 +7,28 @@ output:
linters:
enable:
#- golint
- interfacer
- unconvert
#- dupl
- goconst
- gofmt
- misspell
#- maligned
- unparam
- nakedret
- prealloc
- scopelint
#- gosec
disable:
- errcheck
- staticcheck
linters-settings:
misspell:
locale: US
issues:
max-same: 0
max-per-linter: 0
exclude-use-default: false
exclude:
# gosec: Duplicated errcheck checks
- G104