6
0
mirror of https://github.com/grdl/git-get.git synced 2026-02-14 18:12:34 +00:00
Files
git-get/.golangci.yml
2025-08-24 14:54:02 +02:00

26 lines
457 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
- wsl # We use wsl_v5 instead
exclusions:
rules:
- path: _test.go
linters:
- dupl # We don't mind duplicated code in tests. It helps with clarity