lotus/.golangci.yml
Jakub Sztandera c69e241f33 Change regex
License: MIT
Signed-off-by: Jakub Sztandera <kubuxu@protonmail.ch>
2019-07-08 17:42:49 +02:00

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