rql/.golangci.yml

43 lines
625 B
YAML
Raw Normal View History

2024-05-12 04:04:35 +00:00
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