|
1
|
linters: |
|
2
|
enable: |
|
3
|
- errcheck |
|
4
|
- govet |
|
5
|
- staticcheck |
|
6
|
- unused |
|
7
|
- gofmt |
|
8
|
- gosimple |
|
9
|
- ineffassign |
|
10
|
- typecheck |
|
11
|
|
|
12
|
linters-settings: |
|
13
|
govet: |
|
14
|
enable-all: true |
|
15
|
disable: |
|
16
|
- fieldalignment |
|
17
|
- shadow |
|
18
|
- unusedwrite |
|
19
|
|
|
20
|
issues: |
|
21
|
exclude-rules: |
|
22
|
- path: _test\.go |
|
23
|
linters: |
|
24
|
- errcheck |
|
25
|
- unusedwrite |
|
26
|
|