mirror of
https://github.com/crazy-max/diun.git
synced 2025-01-26 00:48:29 +00:00
b73efda4fc
"list-mode" does not exist. Also made a change to show all issues.
49 lines
893 B
YAML
49 lines
893 B
YAML
run:
|
|
timeout: 10m
|
|
build-tags:
|
|
- containers_image_openpgp
|
|
- exclude_graphdriver_btrfs
|
|
- exclude_graphdriver_devicemapper
|
|
|
|
linters:
|
|
enable:
|
|
- depguard
|
|
- gofmt
|
|
- goimports
|
|
- revive
|
|
- govet
|
|
- importas
|
|
- ineffassign
|
|
- misspell
|
|
- typecheck
|
|
- errname
|
|
- makezero
|
|
- whitespace
|
|
- unused
|
|
- forbidigo
|
|
disable-all: true
|
|
|
|
linters-settings:
|
|
depguard:
|
|
rules:
|
|
main:
|
|
deny:
|
|
# The io/ioutil package has been deprecated.
|
|
# https://go.dev/doc/go1.16#ioutil
|
|
- pkg: "io/ioutil"
|
|
desc: The io/ioutil package has been deprecated.
|
|
forbidigo:
|
|
forbid:
|
|
- '^fmt\.Errorf(# use errors\.Errorf instead)?$'
|
|
importas:
|
|
no-unaliased: true
|
|
|
|
issues:
|
|
exclude-rules:
|
|
- linters:
|
|
- revive
|
|
text: "stutters"
|
|
|
|
# show all
|
|
max-issues-per-linter: 0
|
|
max-same-issues: 0
|