mirror of
https://github.com/goreleaser/goreleaser.git
synced 2024-12-27 01:33:39 +02:00
c09c86cb39
Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
49 lines
800 B
YAML
49 lines
800 B
YAML
run:
|
|
go: "1.22"
|
|
timeout: 5m
|
|
linters:
|
|
enable:
|
|
- copyloopvar
|
|
- thelper
|
|
- gofumpt
|
|
- bodyclose
|
|
- tparallel
|
|
- unconvert
|
|
- unparam
|
|
- wastedassign
|
|
- revive
|
|
- forbidigo
|
|
- tagliatelle
|
|
- misspell
|
|
- depguard
|
|
- testifylint
|
|
- gocritic
|
|
- nolintlint
|
|
linters-settings:
|
|
gocritic:
|
|
disabled-checks:
|
|
- appendAssign
|
|
staticcheck:
|
|
checks:
|
|
- all
|
|
- "-SA1019"
|
|
forbidigo:
|
|
forbid:
|
|
- 'ioutil\.*'
|
|
tagliatelle:
|
|
case:
|
|
use-field-name: false
|
|
rules:
|
|
yaml: snake
|
|
json: snake
|
|
depguard:
|
|
rules:
|
|
main:
|
|
deny:
|
|
- pkg: "github.com/pkg/errors"
|
|
desc: "use stdlib instead"
|
|
testifylint:
|
|
enable-all: true
|
|
disable:
|
|
- error-is-as # false positive
|