woodpecker/.golangci.yml

52 lines
806 B
YAML
Raw Normal View History

linters-settings:
gofmt:
simplify: true
misspell:
locale: US
2022-01-06 06:44:14 +00:00
gofumpt:
extra-rules: true
forbidigo:
forbid:
- context\.WithCancel$
- ^print.*$
- panic
errorlint:
errorf-multi: true
linters:
disable-all: true
enable:
- bidichk
- errcheck
- gofmt
- goimports
- gosimple
- govet
- ineffassign
- misspell
- revive
- staticcheck
- typecheck
2021-11-27 14:29:37 +00:00
- unused
- whitespace
2022-01-06 06:44:14 +00:00
- gofumpt
- errorlint
- forbidigo
- zerologlint
2021-11-25 23:27:43 +00:00
run:
timeout: 5m
issues:
exclude-rules:
# gin force us to use string as context key
- path: server/store/context.go
linters:
- staticcheck
- revive
# let cli use print and panic
2023-10-24 12:42:05 +00:00
- path: 'cmd/*|cli/*'
linters:
- forbidigo