mirror of
https://github.com/crazy-max/diun.git
synced 2025-01-12 03:28:12 +00:00
44 lines
785 B
YAML
44 lines
785 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:
|
|
list-type: blacklist
|
|
include-go-root: true
|
|
packages:
|
|
# The io/ioutil package has been deprecated.
|
|
# https://go.dev/doc/go1.16#ioutil
|
|
- io/ioutil
|
|
forbidigo:
|
|
forbid:
|
|
- '^fmt\.Errorf(# use errors\.Errorf instead)?$'
|
|
importas:
|
|
no-unaliased: true
|
|
|
|
issues:
|
|
exclude-rules:
|
|
- linters:
|
|
- revive
|
|
text: "stutters"
|