8e1a1a86a4
License: MIT Signed-off-by: Jakub Sztandera <kubuxu@protonmail.ch>
37 lines
666 B
YAML
37 lines
666 B
YAML
linters:
|
|
disable-all: true
|
|
enable:
|
|
- vet
|
|
- goimports
|
|
- misspell
|
|
- goconst
|
|
- golint
|
|
- errcheck
|
|
- gosec
|
|
- unconvert
|
|
- staticcheck
|
|
- varcheck
|
|
- structcheck
|
|
- deadcode
|
|
- scopelint
|
|
|
|
|
|
issues:
|
|
exclude:
|
|
- "func name will be used as test\\.Test.* by other packages, and that stutters; consider calling this"
|
|
- "Potential file inclusion via variable"
|
|
- "should have( a package)? comment"
|
|
|
|
exclude-use-default: false
|
|
exclude-rules:
|
|
- path: node/modules/lp2p
|
|
linters:
|
|
- golint
|
|
- path: ".*_test.go"
|
|
linters:
|
|
- gosec
|
|
|
|
linters-settings:
|
|
goconst:
|
|
min-occurrences: 6
|