Reduce enabled linters to misspell with standard defaults, add gofmt formatter, move errcheck settings, and minimize run and issues configurations for brevity.
15 lines
205 B
YAML
15 lines
205 B
YAML
version: "2"
|
|
linters:
|
|
default: standard
|
|
enable:
|
|
- misspell
|
|
settings:
|
|
errcheck:
|
|
check-type-assertions: true
|
|
check-blank: false
|
|
formatters:
|
|
enable:
|
|
- gofmt
|
|
run:
|
|
timeout: 5m
|