mirror of
https://github.com/makew0rld/amfora.git
synced 2024-11-03 02:37:23 -05:00
45 lines
701 B
YAML
45 lines
701 B
YAML
linters:
|
|
fast: false
|
|
disable-all: true
|
|
enable:
|
|
- deadcode
|
|
- errcheck
|
|
- gosimple
|
|
- govet
|
|
- ineffassign
|
|
- staticcheck
|
|
- structcheck
|
|
- typecheck
|
|
- unused
|
|
- varcheck
|
|
- dupl
|
|
- exhaustive
|
|
- exportloopref
|
|
- gocritic
|
|
- goerr113
|
|
- gofmt
|
|
- goimports
|
|
- golint
|
|
- goprintffuncname
|
|
- interfacer
|
|
- lll
|
|
- maligned
|
|
- misspell
|
|
- nolintlint
|
|
- prealloc
|
|
- scopelint
|
|
- unconvert
|
|
- unparam
|
|
|
|
issues:
|
|
exclude-use-default: true
|
|
max-issues-per-linter: 0
|
|
|
|
linters-settings:
|
|
gocritic:
|
|
disabled-checks:
|
|
- ifElseChain
|
|
goconst:
|
|
# minimal length of string constant, 3 by default
|
|
min-len: 5
|