Files
syncwarden/.golangci.yml
Axel Meyer 5683621874
Some checks failed
CI / lint (push) Failing after 34s
CI / test (push) Successful in 30s
Release / build (push) Successful in 2m38s
Fix CI: release grep exit code, golangci-lint v2 config version
Release pipeline crashed when no prior release existed because
grep returned exit 1 (no match) under set -e. Add || true.

golangci-lint v2 requires a version: "2" field in .golangci.yml.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-04 00:57:39 +01:00

16 lines
180 B
YAML

version: "2"
linters:
enable:
- errcheck
- gosec
- govet
- ineffassign
- staticcheck
- unused
issues:
exclude-dirs:
- cmd/panel
- cmd/icongen