cast-ghl-plugin/.golangci.yml
Head of Product & Engineering 8f2080203d
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
fix: update .golangci.yml to v2 config format
golangci-lint v2 requires version: "2" at the top level, linters.settings
(not linters-settings), and issues.exclusions.rules (not issues.exclude-rules).
Also removed gosimple and unused which are now merged into staticcheck.

Co-Authored-By: Paperclip <noreply@paperclip.ing>
2026-04-05 21:39:28 +02:00

25 lines
344 B
YAML

version: "2"
linters:
enable:
- errcheck
- govet
- staticcheck
- ineffassign
- errorlint
- gocritic
- revive
settings:
revive:
rules:
- name: exported
disabled: true
issues:
exclusions:
rules:
- path: _test\.go
linters:
- errcheck
- gocritic