go-libp2p-rendezvous/.golangci.yml
gfanton 9135bf5c15 chore: disable golangci revive for now
Signed-off-by: gfanton <8671905+gfanton@users.noreply.github.com>
2022-11-08 18:55:00 +01:00

33 lines
543 B
YAML

run:
deadline: 1m
tests: false
skip-files:
- "test/.*"
- "test/.*/.*"
linters-settings:
golint:
min-confidence: 0
maligned:
suggest-new: true
goconst:
min-len: 5
min-occurrences: 4
misspell:
locale: US
linters:
disable-all: true
enable:
- goconst
- misspell
- unused
- staticcheck
- unconvert
- gofmt
- goimports
# @TODO(gfanton): disable revive for now has it generate to many errors,
# it should be enable in a dedicated PR
# - revive
- ineffassign