28 строки
407 B
YAML
28 строки
407 B
YAML
run:
|
|
deadline: 5m
|
|
|
|
linters:
|
|
disable-all: true
|
|
enable:
|
|
- deadcode
|
|
- errorlint
|
|
- goconst
|
|
- gocyclo
|
|
- gofmt
|
|
- goimports
|
|
- gosec
|
|
- gosimple
|
|
- govet
|
|
- ineffassign
|
|
- misspell
|
|
- nakedret
|
|
- prealloc
|
|
- revive
|
|
- staticcheck
|
|
- structcheck
|
|
- unconvert
|
|
- unused
|
|
- varcheck
|
|
# Run with --fast=false for more extensive checks
|
|
fast: true
|