mirror of
https://github.com/goreleaser/nfpm
synced 2024-11-05 19:09:12 +01:00
38f9376d59
Signed-off-by: Carlos A Becker <caarlos0@users.noreply.github.com>
32 lines
519 B
YAML
32 lines
519 B
YAML
run:
|
|
go: '1.20'
|
|
timeout: 5m
|
|
linters:
|
|
enable:
|
|
- thelper
|
|
- gofumpt
|
|
- tparallel
|
|
- unconvert
|
|
- unparam
|
|
- wastedassign
|
|
- revive
|
|
- forbidigo
|
|
- tagliatelle
|
|
- misspell
|
|
- depguard
|
|
|
|
linters-settings:
|
|
forbidigo:
|
|
forbid:
|
|
- 'ioutil\.*'
|
|
tagliatelle:
|
|
case:
|
|
use-field-name: false
|
|
rules:
|
|
yaml: snake
|
|
json: snake
|
|
depguard:
|
|
list-type: 'denylist'
|
|
packages-with-error-message:
|
|
- 'github.com/pkg/errors': 'use stdlib instead'
|