mirror of
https://github.com/grdl/git-get.git
synced 2026-02-04 13:21:45 +00:00
25 lines
423 B
YAML
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
|
|
|