1run: 2 timeout: 10m 3 4linters: 5 disable-all: true 6 enable: 7 - dupl 8 - errorlint 9 - gofmt 10 - goimports 11 - gomodguard 12 - gosimple 13 - govet 14 - ineffassign 15 - misspell 16 - nakedret 17 - revive 18 - unused 19 - staticcheck 20 21linters-settings: 22 gofmt: 23 simplify: true 24 gomodguard: 25 blocked: 26 modules: 27 - github.com/pkg/errors: 28 recommendations: 29 - errors 30 - fmt 31 dupl: 32 threshold: 400