leaf/.golangci.yml
2025-02-03 11:48:48 +03:00

43 lines
623 B
YAML

run:
timeout: 5m
linters-settings:
goconst:
min-len: 2
min-occurrences: 2
misspell:
locale: US
lll:
line-length: 140
gocritic:
enabled-tags:
- performance
- style
- experimental
disabled-checks:
- paramTypeCombine
- unnamedResult
linters:
enable:
- copyloopvar
- dupl
- gochecknoinits
- gocritic
- gocyclo
- gosec
- gosimple
- govet
- ineffassign
- misspell
- nakedret
- prealloc
- revive
- staticcheck
- stylecheck
- typecheck
- unconvert
- unused
fast: false
disable-all: true