grokkit/.golangci.yml
Greg Gauthier 4f40c7e8d7
Some checks failed
CI / Test (push) Successful in 31s
CI / Lint (push) Failing after 17s
CI / Build (push) Successful in 20s
chore(lint): remove typecheck from golangci linters
Disable the typecheck linter as it may be redundant or unnecessary in the current setup.
2026-03-02 21:18:43 +00:00

22 lines
273 B
YAML

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