mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-11-30 02:48:45 +08:00
405b3cd932
Signed-off-by: Xiangyu Wang <xiangyu.wang@zilliz.com>
55 lines
1.1 KiB
YAML
55 lines
1.1 KiB
YAML
run:
|
|
skip-dirs:
|
|
- build
|
|
- configs
|
|
- deployments
|
|
- docs
|
|
- scripts
|
|
- internal/core
|
|
|
|
linters-settings:
|
|
misspell:
|
|
locale: US
|
|
|
|
linters:
|
|
disable-all: true
|
|
enable:
|
|
- typecheck
|
|
- goimports
|
|
- misspell
|
|
- govet
|
|
- ineffassign
|
|
- gosimple
|
|
- gosec
|
|
- revive
|
|
|
|
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
|
|
# Binds to all network interfaces
|
|
- G102
|
|
# Errors unhandled
|
|
- G104
|
|
# file/folder Permission
|
|
- G301
|
|
- G302
|
|
# Potential file inclusion via variable
|
|
- G304
|
|
# Deferring unsafe method like *os.File Close
|
|
- G307
|
|
# Use of weak random number generator math/rand
|
|
- G404
|
|
# 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
|
|
|
|
service:
|
|
golangci-lint-version: 1.27.0 # use the fixed version to not introduce new linters unexpectedly
|
|
|