...
1run:
2 timeout: 10m
3 modules-download-mode: vendor
4
5linters:
6 enable:
7 - gofmt
8 - govet
9 - depguard
10 - goimports
11 - ineffassign
12 - misspell
13 - unused
14 - revive
15 - staticcheck
16 - typecheck
17 disable-all: true
18
19linters-settings:
20 depguard:
21 list-type: blacklist
22 include-go-root: true
23 packages:
24 # The io/ioutil package has been deprecated.
25 # https://go.dev/doc/go1.16#ioutil
26 - io/ioutil
27
28issues:
29 exclude-rules:
30 - linters:
31 - revive
32 text: "stutters"
View as plain text