mirror of
https://github.com/thegeeklab/drone-docker.git
synced 2024-11-14 17:00:41 +00:00
39 lines
584 B
YAML
39 lines
584 B
YAML
linters:
|
|
enable:
|
|
- gosimple
|
|
- deadcode
|
|
- typecheck
|
|
- govet
|
|
- errcheck
|
|
- staticcheck
|
|
- unused
|
|
- structcheck
|
|
- varcheck
|
|
- dupl
|
|
- gofmt
|
|
- misspell
|
|
- gocritic
|
|
- bidichk
|
|
- ineffassign
|
|
- revive
|
|
- gofumpt
|
|
- depguard
|
|
enable-all: false
|
|
disable-all: true
|
|
fast: false
|
|
|
|
run:
|
|
timeout: 3m
|
|
|
|
linters-settings:
|
|
gofumpt:
|
|
extra-rules: true
|
|
lang-version: "1.18"
|
|
|
|
issues:
|
|
exclude-rules:
|
|
- path: plugin/daemon.go
|
|
linters:
|
|
- errcheck
|
|
text: "Error return value of `cmd.Run` is not checked"
|