You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
452 B
31 lines
452 B
5 years ago
|
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
|
||
|
|
||
|
issues:
|
||
|
exclude-rules:
|
||
|
- path: bson.go
|
||
|
text: "should be .*ObjectID"
|
||
|
linters:
|
||
|
- golint
|
||
|
|