6
0
mirror of https://github.com/grdl/git-get.git synced 2026-02-04 11:36:46 +00:00
Files
git-get/.golangci.yml
Grzegorz Dlugoszewski 59aaaffe35 Disable paralleltest linter
2025-08-24 14:50:45 +02:00

25 lines
423 B
YAML

version: "2"
run:
timeout: 1m
formatters:
enable:
- gci
- gofmt
- goimports
linters:
default: all
disable:
- depguard # We don't have any packages we need to block
- paralleltest # Tests are fast already and paralellizing them adds complexity
exclusions:
rules:
- path: _test.go
linters:
- dupl # We don't mind duplicated code in tests. It helps with clarity