1linters:
2  # please, do not use `enable-all`: it's deprecated and will be removed soon.
3  # inverted configuration with `enable-all` and `disable` is not scalable during updates of golangci-lint
4  disable-all: true
5  enable:
6    - deadcode
7    - depguard
8    - dupl
9    - errcheck
10#    - gochecknoinits
11    - goconst
12    - gocritic
13    - gocyclo
14    - gofmt
15    - goimports
16    - golint
17    - gosec
18    - gosimple
19    - govet
20    - ineffassign
21    - interfacer
22#    - lll
23    - misspell
24    - nakedret
25    - scopelint
26    - staticcheck
27    - structcheck
28#    - typecheck
29    - unconvert
30    - unparam
31    - unused
32    - varcheck
33