mirror of
https://github.com/moul/sshportal.git
synced 2024-11-10 17:26:41 +08:00
35 lines
487 B
YAML
35 lines
487 B
YAML
|
run:
|
||
|
deadline: 1m
|
||
|
tests: false
|
||
|
#skip-files:
|
||
|
# - ".*\\.gen\\.go"
|
||
|
|
||
|
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
|