Files
plugin-drone-telegram/.golangci.yml
Bo-Yi Wu 3660832535 chore: remove gocyclo linter from project configuration
- Remove the gocyclo linter from the configuration

Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>
2024-08-13 23:16:21 +08:00

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 "