go-onerng/.golangci.yml
Dave Henderson d9e2265891
Adding makefile and CI
Signed-off-by: Dave Henderson <dhenderson@gmail.com>
2020-11-01 14:18:36 -05:00

79 lines
1.5 KiB
YAML

linters-settings:
govet:
check-shadowing: true
golint:
min-confidence: 0
gocyclo:
min-complexity: 10
maligned:
suggest-new: true
dupl:
threshold: 100
goconst:
min-len: 2
min-occurrences: 4
lll:
line-length: 140
nolintlint:
allow-leading-space: true # don't require machine-readable nolint directives (i.e. with no leading space)
allow-unused: false # report any unused nolint directives
require-explanation: false # don't require an explanation for nolint directives
require-specific: false # don't require nolint directives to be specific about which linter is being skipped
linters:
disable-all: true
enable:
- asciicheck
- bodyclose
- deadcode
- depguard
- dogsled
- dupl
# - errcheck
- exhaustive
- exportloopref
# - funlen
# - gci
# - gochecknoglobals
- gochecknoinits
# - gocognit
- goconst
# - gocritic
# - gocyclo
# - godox
- gofmt
- gofumpt
- goheader
- goimports
- golint
# - gomnd
- gomodguard
- goprintffuncname
# - gosec
- gosimple
# - govet
- ineffassign
# - interfacer
# - lll
- maligned
- misspell
- nakedret
# - nestif
# - nlreturn
- noctx
- nolintlint
- prealloc
- rowserrcheck
- scopelint
- sqlclosecheck
- staticcheck
- structcheck
- stylecheck
- typecheck
- unconvert
# - unparam
- unused
- varcheck
- whitespace
# - wsl