rql/.golangci.yml
2024-05-12 07:04:35 +03:00

43 lines
625 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:
- dupl
- exportloopref
- gochecknoinits
- gocritic
- gocyclo
- gosec
- gosimple
- govet
- ineffassign
- misspell
- nakedret
- prealloc
- revive
- staticcheck
- stylecheck
- typecheck
- unconvert
- unused
fast: false
disable-all: true