mirror of
https://github.com/prometheus/prometheus.git
synced 2024-12-28 15:09:39 -08:00
8cc94fac93
Signed-off-by: Ganesh Vernekar <cs15btech11018@iith.ac.in>
46 lines
675 B
YAML
46 lines
675 B
YAML
linters-settings:
|
|
govet:
|
|
check-shadowing: true
|
|
golint:
|
|
min-confidence: 0
|
|
gocyclo:
|
|
min-complexity: 31
|
|
maligned:
|
|
suggest-new: true
|
|
dupl:
|
|
threshold: 100
|
|
goconst:
|
|
min-len: 2
|
|
min-occurrences: 4
|
|
|
|
linters:
|
|
enable-all: true
|
|
disable:
|
|
- maligned
|
|
- lll
|
|
- gochecknoinits
|
|
- gochecknoglobals
|
|
- godox
|
|
- gocognit
|
|
- whitespace
|
|
- wsl
|
|
- funlen
|
|
- wrapcheck
|
|
- testpackage
|
|
- nlreturn
|
|
- gofumpt
|
|
- goerr113
|
|
- gci
|
|
- gomnd
|
|
- godot
|
|
- exhaustivestruct
|
|
|
|
issues:
|
|
exclude-rules:
|
|
- path: bson.go
|
|
text: "should be .*ObjectID"
|
|
linters:
|
|
- golint
|
|
- stylecheck
|
|
|