Files
Zach Kelling 4e2a4e432e chore: remove local replace directives and update dependencies
- Update github.com/luxfi/keys v1.0.5 → v1.0.6
- Update github.com/luxfi/genesis v1.5.18 → v1.5.19
- Remove local replace directives for keys and genesis
- Use published package versions for reproducible builds
2026-01-03 07:05:17 -08:00

51 lines
883 B
YAML

# golangci-lint v2 configuration
version: "2"
run:
timeout: 10m
formatters:
enable:
- gofmt
- goimports
linters:
default: none
enable:
- errcheck
- govet
- ineffassign
- staticcheck
- misspell
settings:
staticcheck:
checks:
- "all"
- "-SA6002"
- "-SA1019"
- "-ST1000"
- "-ST1021"
- "-QF1008"
exclusions:
generated: lax
presets:
- comments
rules:
- path: ".*\\.pb\\.go$"
linters:
- all
- path: ".*mock.*"
linters:
- all
- path: _test\.go
linters:
- errcheck
- linters:
- errcheck
text: "Error return value of .*(Close|Flush|Fprintln|Fprintf|Print|Printf|Println|Write|Signal|Kill|RemoveAll|Sync|Sscanf|MarkFlagRequired).*is not checked"
issues:
max-same-issues: 0