ficsit-cli-flake/.golangci.yml
Vilsol 4195463c60
feat: threaded download pooling (#48)
* feat: threaded download pooling
refactor: splice out resolver

* chore: remove debug
2023-12-16 13:59:58 +02:00

61 lines
979 B
YAML

linters-settings:
wrapcheck:
ignoreSigs:
- .Errorf(
- errors.New(
- errors.Unwrap(
- .Wrap(
- .Wrapf(
- .WithMessage(
- .WithMessagef(
- .WithStack(
ignorePackageGlobs:
- github.com/satisfactorymodding/ficsit-cli/*
govet:
check-shadowing: true
enable-all: true
disable:
- shadow
gocritic:
disabled-checks:
- ifElseChain
gci:
custom-order: true
sections:
- standard
- default
- prefix(github.com/satisfactorymodding/ficsit-cli)
- blank
- dot
run:
skip-files:
- ./ficsit/types.go
linters:
disable-all: true
enable:
- errcheck
- gosimple
- govet
- ineffassign
- staticcheck
- typecheck
- unused
- bidichk
- contextcheck
- durationcheck
- errorlint
- goimports
- revive
- misspell
- prealloc
- whitespace
- wrapcheck
- gci
- gocritic
- nonamedreturns