protoc-gen-gotemplate/.golangci.yml

37 lines
515 B
YAML
Raw Permalink Normal View History

2019-01-20 06:58:14 +01:00
run:
deadline: 1m
tests: false
2020-07-08 23:31:19 +02:00
skip-files:
- ".*\\.gen\\.go"
skip-dirs:
- "examples"
2019-01-20 06:58:14 +01:00
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
- deadcode
- misspell
- structcheck
- errcheck
- unused
- varcheck
- staticcheck
- unconvert
- gofmt
- goimports
- golint
- ineffassign