Files
Erik Geiser cd52919c0c Small fixes
2026-04-23 09:57:36 +02:00

117 lines
2.1 KiB
YAML

version: "2"
linters:
default: none
enable:
- asasalint
- asciicheck
- bidichk
- bodyclose
- canonicalheader
- containedctx
- decorder
- dupl
- dupword
- durationcheck
- errchkjson
- errname
- errorlint
- fatcontext
- forcetypeassert
- ginkgolinter
- gocheckcompilerdirectives
- gochecksumtype
- goconst
- gocritic
- gocyclo
- godot
- godox
- goheader
- gosec
- gomodguard
- gosmopolitan
- govet
- grouper
- importas
- inamedparam
- ineffassign
- interfacebloat
- lll
- loggercheck
- maintidx
- makezero
- mirror
- misspell
- nakedret
- nestif
- nilerr
- nilnil
- nlreturn
- noctx
- nolintlint
- nosprintfhostport
- prealloc
- predeclared
- promlinter
- protogetter
- reassign
- sloglint
- spancheck
- sqlclosecheck
- staticcheck
- tagalign
- tagliatelle
- usetesting
- testableexamples
- testifylint
- thelper
- tparallel
- unconvert
- unparam
- unused
- usestdlibvars
- wastedassign
- whitespace
- wsl_v5
- zerologlint
- noinlineerr
settings:
lll:
line-length: 130
tab-width: 4
godox:
keywords:
- FIXME # FIXME generates a linter warning
goconst:
min-occurrences: 5
tagliatelle:
# check the struck tag name case
case:
rules:
json: snake
yaml: snake
gosec:
excludes:
- G304 # command execution
- G204 # file inclusion
- G115 # integer overflow
- G401 # weak cryptographic primitive (tell Microsoft, not me)
- G501 # weak cryptographic primitive (tell Microsoft, not me)
- G505 # weak cryptographic primitive (tell Microsoft, not me)
- G402 # InsecureSkipVerify may be true
gocyclo:
min-complexity: 35
formatters:
enable:
- gofmt
- golines
- goimports
settings:
golines:
max-len: 130
tab-len: 4
exclusions:
generated: lax
paths:
- third_party$
- builtin$