syft/.golangci.yaml

53 lines
1.1 KiB
YAML
Raw Normal View History

2020-05-12 14:45:18 +00:00
linters:
# inverted configuration with `enable-all` and `disable` is not scalable during updates of golangci-lint
disable-all: true
enable:
2020-05-18 13:46:48 +00:00
- asciicheck
2020-05-12 14:45:18 +00:00
- bodyclose
- deadcode
- depguard
- dogsled
- dupl
- errcheck
2020-05-13 00:43:46 +00:00
- funlen
- gocognit
2020-05-12 14:45:18 +00:00
- goconst
2020-05-13 00:43:46 +00:00
- gocritic
2020-05-12 14:45:18 +00:00
- gocyclo
- gofmt
- goimports
2020-05-13 00:43:46 +00:00
- golint
2020-05-12 14:45:18 +00:00
- goprintffuncname
- gosec
- gosimple
- govet
- ineffassign
2020-05-18 13:46:48 +00:00
- maligned
2020-05-12 14:45:18 +00:00
- misspell
- nakedret
- nolintlint
2020-05-18 13:46:48 +00:00
- prealloc
2020-05-12 14:45:18 +00:00
- rowserrcheck
2020-05-13 00:43:46 +00:00
- scopelint
2020-05-12 14:45:18 +00:00
- staticcheck
- structcheck
2020-05-13 00:43:46 +00:00
- stylecheck
2020-05-12 14:45:18 +00:00
- typecheck
- unconvert
- unparam
- unused
- varcheck
2020-05-13 00:43:46 +00:00
- whitespace
2020-05-12 14:45:18 +00:00
# do not enable...
# - gochecknoglobals
2020-05-18 13:46:48 +00:00
# - gochecknoinits # this is too aggressive
2020-05-12 14:45:18 +00:00
# - godot
# - godox
# - goerr113
2020-05-18 13:46:48 +00:00
# - gomnd # this is too aggressive
# - interfacer # this is a good idea, but is no longer supported and is prone to false positives
# - lll # without a way to specify per-line exception cases, this is not usable
2020-05-12 14:45:18 +00:00
# - nestif
# - testpackage
2020-05-18 13:46:48 +00:00
# - wsl