1
1
mirror of https://github.com/wader/fq.git synced 2024-09-20 08:18:51 +03:00
fq/.golangci.yml
2021-09-27 11:01:14 +02:00

38 lines
565 B
YAML

linters:
enable:
- revive
- errname
- goimports
- nilerr
- forcetypeassert
- asciicheck
- bodyclose
- durationcheck
- errorlint
- noctx
- misspell
- exportloopref
- unconvert
- unparam
- wastedassign
- makezero
- exhaustive
- gosec
- nolintlint
- nakedret
- predeclared
- tagliatelle
linters-settings:
misspell:
ignore-words:
# elf RELA
- rela
- equalisation
- synchronisation
gosec:
excludes:
# allow md5
- G401
- G501