grokkit/.golangci.yml
Greg Gauthier 586dfeaa8c
Some checks failed
CI / Test (push) Successful in 33s
CI / Lint (push) Failing after 16s
CI / Build (push) Successful in 21s
chore: move gofmt from linters to formatters in .golangci.yml
Correctly configure gofmt as a formatter instead of a linter for proper linting behavior.
2026-03-02 21:21:21 +00:00

25 lines
296 B
YAML

version: "2"
linters:
default: none
enable:
- govet
- errcheck
- staticcheck
- ineffassign
- unused
- gosimple
- misspell
settings:
errcheck:
check-type-assertions: true
check-blank: false
formatters:
enable:
- gofmt
run:
timeout: 5m