Files
steampipe/.golangci.yml

45 lines
831 B
YAML

linters:
disable-all: true
enable:
# default rules
- errcheck
- gosimple
- govet
- ineffassign
- staticcheck
- typecheck
- unused
# other rules
- asasalint
- asciicheck
- bidichk
- durationcheck
- exportloopref
- forbidigo
- gocritic
- gocheckcompilerdirectives
- gosec
- makezero
- nilerr
- nolintlint
- reassign
- sqlclosecheck
- unconvert
linters-settings:
nolintlint:
require-explanation: true
require-specific: true
gocritic:
disabled-checks:
- ifElseChain # style
- singleCaseSwitch # style & it's actually not a bad idea to use single case switch in some cases
- assignOp # style
- commentFormatting # style
run:
timeout: 5m
skip-dirs:
- "tests/acceptance"