mirror of
https://github.com/go-gitea/gitea
synced 2024-11-02 16:24:25 +00:00
31 lines
452 B
YAML
31 lines
452 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
|
||
|
|
||
|
issues:
|
||
|
exclude-rules:
|
||
|
- path: bson.go
|
||
|
text: "should be .*ObjectID"
|
||
|
linters:
|
||
|
- golint
|
||
|
|