42 lines
1.0 KiB
YAML
42 lines
1.0 KiB
YAML
|
linters:
|
||
|
enable-all: true
|
||
|
disable:
|
||
|
- godox
|
||
|
- wsl
|
||
|
- testpackage
|
||
|
- gofumpt
|
||
|
- exhaustivestruct
|
||
|
linters-settings:
|
||
|
maligned:
|
||
|
# print struct with more effective memory layout or not, false by default
|
||
|
suggest-new: true
|
||
|
gocyclo:
|
||
|
# minimal code complexity to report, 30 by default (but we recommend 10-20)
|
||
|
min-complexity: 30
|
||
|
goimports:
|
||
|
# put imports beginning with prefix after 3rd-party packages;
|
||
|
# it's a comma-separated list of prefixes
|
||
|
local-prefixes: github.com/goreleaser/nfpm
|
||
|
govet:
|
||
|
check-shadowing: true
|
||
|
errcheck:
|
||
|
ignore: ^Close.*,fmt:.*,github.com/pkg/errors:^Wrap.*,os:^Setenv$,github.com/spf13/viper:.*
|
||
|
lll:
|
||
|
line-length: 200
|
||
|
golint:
|
||
|
min-confidence: .8
|
||
|
nakedret:
|
||
|
max-func-lines: 0
|
||
|
gocritic:
|
||
|
enabled-tags:
|
||
|
- style
|
||
|
- performance
|
||
|
issues:
|
||
|
exclude-rules:
|
||
|
- text: "G104" # gosec G104 is caught by errcheck
|
||
|
linters:
|
||
|
- gosec
|
||
|
- text: "SA5001" # staticcheck SA5001 is caught by errcheck also
|
||
|
linters:
|
||
|
- staticcheck
|