You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
351 B
YAML
28 lines
351 B
YAML
2 years ago
|
run:
|
||
|
deadline: 2m
|
||
|
|
||
|
linters:
|
||
|
disable-all: true
|
||
|
enable:
|
||
|
- misspell
|
||
|
- govet
|
||
|
- staticcheck
|
||
|
- errcheck
|
||
|
- unparam
|
||
|
- ineffassign
|
||
|
- nakedret
|
||
|
- gocyclo
|
||
|
- dupl
|
||
|
- goimports
|
||
|
- revive
|
||
|
- gosec
|
||
|
- gosimple
|
||
|
- typecheck
|
||
|
- unused
|
||
|
|
||
|
linters-settings:
|
||
|
gofmt:
|
||
|
simplify: true
|
||
|
dupl:
|
||
|
threshold: 600
|