1run:
2  deadline: 5m
3
4linters:
5  disable-all: true
6  enable:
7    #- bodyclose
8    - deadcode
9    #- depguard
10    #- dogsled
11    #- dupl
12    - errcheck
13    #- exhaustive
14    #- funlen
15    - gas
16    #- gochecknoinits
17    - goconst
18    #- gocritic
19    #- gocyclo
20    #- gofmt
21    - goimports
22    - golint
23    #- gomnd
24    #- goprintffuncname
25    #- gosec
26    #- gosimple
27    - govet
28    - ineffassign
29    - interfacer
30    #- lll
31    - maligned
32    - megacheck
33    #- misspell
34    #- nakedret
35    #- noctx
36    #- nolintlint
37    #- rowserrcheck
38    #- scopelint
39    #- staticcheck
40    - structcheck
41    #- stylecheck
42    #- typecheck
43    - unconvert
44    #- unparam
45    #- unused
46    - varcheck
47    #- whitespace
48  fast: false
49