40 lines
614 B
YAML
40 lines
614 B
YAML
# ©AngelaMos | 2026
|
|
# .golangci.yml
|
|
version: "2"
|
|
|
|
run:
|
|
timeout: 5m
|
|
|
|
linters:
|
|
default: none
|
|
enable:
|
|
- errcheck
|
|
- govet
|
|
- staticcheck
|
|
- unused
|
|
- ineffassign
|
|
- gocritic
|
|
- gosec
|
|
- misspell
|
|
- unconvert
|
|
- unparam
|
|
- prealloc
|
|
settings:
|
|
errcheck:
|
|
exclude-functions:
|
|
- fmt.Fprint
|
|
- fmt.Fprintf
|
|
- fmt.Fprintln
|
|
- (io.Closer).Close
|
|
gocritic:
|
|
enabled-tags:
|
|
- diagnostic
|
|
- performance
|
|
disabled-checks:
|
|
- hugeParam
|
|
- rangeValCopy
|
|
gosec:
|
|
excludes:
|
|
- G304
|
|
- G704
|