2020-11-03 11:25:47 +08:00
|
|
|
run:
|
2022-08-01 14:28:33 +08:00
|
|
|
go: '1.18'
|
2020-11-03 11:25:47 +08:00
|
|
|
skip-dirs:
|
|
|
|
- build
|
|
|
|
- configs
|
|
|
|
- deployments
|
|
|
|
- docs
|
|
|
|
- scripts
|
|
|
|
- internal/core
|
|
|
|
|
|
|
|
linters:
|
2020-11-04 16:28:14 +08:00
|
|
|
disable-all: true
|
2020-11-03 11:25:47 +08:00
|
|
|
enable:
|
|
|
|
- typecheck
|
|
|
|
- goimports
|
|
|
|
- misspell
|
|
|
|
- govet
|
|
|
|
- ineffassign
|
|
|
|
- gosimple
|
2021-09-18 14:45:50 +08:00
|
|
|
- gosec
|
2021-12-07 19:43:03 +08:00
|
|
|
- revive
|
2023-02-15 17:22:34 +08:00
|
|
|
- durationcheck
|
|
|
|
- unconvert
|
2023-02-26 11:31:49 +08:00
|
|
|
- depguard
|
2023-01-10 16:21:39 +08:00
|
|
|
# - gocritic
|
2022-06-10 14:58:07 +08:00
|
|
|
|
|
|
|
linters-settings:
|
|
|
|
misspell:
|
|
|
|
locale: US
|
|
|
|
gocritic:
|
|
|
|
enabled-checks:
|
|
|
|
- ruleguard
|
|
|
|
settings:
|
|
|
|
ruleguard:
|
|
|
|
failOnError: true
|
2023-02-26 11:31:49 +08:00
|
|
|
rules: 'rules.go'
|
|
|
|
depguard:
|
|
|
|
list-type: denylist
|
|
|
|
include-go-root: true
|
|
|
|
packages:
|
|
|
|
- errors
|
|
|
|
- github.com/pkg/errors
|
|
|
|
- github.com/pingcap/errors
|
|
|
|
- golang.org/x/xerrors
|
|
|
|
- github.com/go-errors/errors
|
2020-11-03 11:25:47 +08:00
|
|
|
|
2020-11-12 12:04:12 +08:00
|
|
|
issues:
|
|
|
|
exclude-use-default: false
|
|
|
|
exclude:
|
|
|
|
- should have a package comment
|
|
|
|
- should have comment
|
|
|
|
- should be of the form
|
|
|
|
- should not use dot imports
|
|
|
|
- which can be annoying to use
|
2021-09-18 14:45:50 +08:00
|
|
|
# Binds to all network interfaces
|
|
|
|
- G102
|
|
|
|
# Errors unhandled
|
|
|
|
- G104
|
|
|
|
# file/folder Permission
|
|
|
|
- G301
|
|
|
|
- G302
|
|
|
|
# Potential file inclusion via variable
|
|
|
|
- G304
|
2023-02-26 11:31:49 +08:00
|
|
|
# Deferring unsafe method like *os.File Close
|
2021-09-18 14:45:50 +08:00
|
|
|
- G307
|
|
|
|
# Use of weak random number generator math/rand
|
|
|
|
- G404
|
2022-01-27 15:57:40 +08:00
|
|
|
# Exclude copylocks
|
|
|
|
- copylocks
|
2021-09-24 10:39:54 +08:00
|
|
|
# Maximum issues count per one linter. Set to 0 to disable. Default is 50.
|
|
|
|
max-issues-per-linter: 0
|
|
|
|
# Maximum count of issues with the same text. Set to 0 to disable. Default is 3.
|
|
|
|
max-same-issues: 0
|
|
|
|
|
2020-11-03 11:25:47 +08:00
|
|
|
service:
|
|
|
|
golangci-lint-version: 1.27.0 # use the fixed version to not introduce new linters unexpectedly
|