Switch default linters to standard and retain misspell enablement, removing explicit enables for govet, errcheck, staticcheck, ineffassign, unused, and gosimple.
19 lines
209 B
YAML
19 lines
209 B
YAML
version: "2"
|
|
|
|
linters:
|
|
default: standard
|
|
enable:
|
|
- misspell
|
|
|
|
settings:
|
|
errcheck:
|
|
check-type-assertions: true
|
|
check-blank: false
|
|
|
|
formatters:
|
|
enable:
|
|
- gofmt
|
|
|
|
run:
|
|
timeout: 5m
|