35 lines
895 B
YAML
35 lines
895 B
YAML
formatters:
|
|
enable:
|
|
- gofmt
|
|
- goimports
|
|
settings: # please keep this alphabetized
|
|
goimports:
|
|
local-prefixes:
|
|
- go.etcd.io # Put imports beginning with prefix after 3rd-party packages.
|
|
issues:
|
|
max-same-issues: 0
|
|
linters:
|
|
default: none
|
|
enable: # please keep this alphabetized
|
|
- errcheck
|
|
- govet
|
|
- ineffassign
|
|
- staticcheck
|
|
- unused
|
|
exclusions:
|
|
presets:
|
|
- comments
|
|
- common-false-positives
|
|
- legacy
|
|
- std-error-handling
|
|
settings: # please keep this alphabetized
|
|
staticcheck:
|
|
checks:
|
|
- all
|
|
- -QF1003 # Convert if/else-if chain to tagged switch
|
|
- -QF1010 # Convert slice of bytes to string when printing it
|
|
- -ST1003 # Poorly chosen identifier
|
|
- -ST1005 # Incorrectly formatted error string
|
|
- -ST1012 # Poorly chosen name for error variable
|
|
version: "2"
|