mirror of
https://github.com/appleboy/drone-telegram.git
synced 2026-06-04 18:23:45 +08:00
3660832535
- Remove the gocyclo linter from the configuration Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>
38 lines
612 B
YAML
38 lines
612 B
YAML
linters:
|
|
disable-all: true
|
|
enable:
|
|
- bodyclose
|
|
- dogsled
|
|
- errcheck
|
|
- exportloopref
|
|
- exhaustive
|
|
- gochecknoinits
|
|
- goconst
|
|
- gocritic
|
|
- gofmt
|
|
- goimports
|
|
- goprintffuncname
|
|
- gosec
|
|
- gosimple
|
|
- govet
|
|
- ineffassign
|
|
- misspell
|
|
- nakedret
|
|
- noctx
|
|
- nolintlint
|
|
- staticcheck
|
|
- stylecheck
|
|
- typecheck
|
|
- unconvert
|
|
- unparam
|
|
- unused
|
|
- whitespace
|
|
- gofumpt
|
|
|
|
issues:
|
|
exclude-rules:
|
|
# Exclude `lll` issues for long lines with `go:generate`.
|
|
- linters:
|
|
- lll
|
|
source: "^//go:generate "
|