grokkit/.golangci.yml
Greg Gauthier 6f6596c13f
All checks were successful
CI / Test (push) Successful in 34s
CI / Lint (push) Successful in 27s
CI / Build (push) Successful in 22s
chore(lint): simplify golangci-lint configuration
Reduce enabled linters to misspell with standard defaults, add gofmt formatter,
move errcheck settings, and minimize run and issues configurations for brevity.
2026-03-04 20:04:43 +00:00

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