mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
4bdc208449
The false positive has been fixed. Signed-off-by: Kazuyoshi Kato <katokazu@amazon.com>
119 lines
3.7 KiB
YAML
119 lines
3.7 KiB
YAML
linters:
|
|
enable:
|
|
- deadcode
|
|
- depguard
|
|
- goimports
|
|
- golint
|
|
- gosec
|
|
- gosimple
|
|
- govet
|
|
- ineffassign
|
|
- misspell
|
|
- staticcheck
|
|
- structcheck
|
|
- typecheck
|
|
- unconvert
|
|
- unused
|
|
- varcheck
|
|
|
|
disable:
|
|
- errcheck
|
|
|
|
run:
|
|
concurrency: 2
|
|
modules-download-mode: vendor
|
|
|
|
skip-dirs:
|
|
- docs
|
|
|
|
linters-settings:
|
|
govet:
|
|
check-shadowing: false
|
|
depguard:
|
|
list-type: blacklist
|
|
include-go-root: true
|
|
packages:
|
|
# The io/ioutil package has been deprecated.
|
|
# https://go.dev/doc/go1.16#ioutil
|
|
- io/ioutil
|
|
issues:
|
|
# The default exclusion rules are a bit too permissive, so copying the relevant ones below
|
|
exclude-use-default: false
|
|
|
|
exclude-rules:
|
|
# These are copied from the default exclude rules, except for "ineffective break statement"
|
|
# and GoDoc checks.
|
|
# https://github.com/golangci/golangci-lint/blob/0cc87df732aaf1d5ad9ce9ca538d38d916918b36/pkg/config/config.go#L36
|
|
- text: "Error return value of .((os\\.)?std(out|err)\\..*|.*Close|.*Flush|os\\.Remove(All)?|.*printf?|os\\.(Un)?Setenv). is not checked"
|
|
linters:
|
|
- errcheck
|
|
- text: "func name will be used as test\\.Test.* by other packages, and that stutters; consider calling this"
|
|
linters:
|
|
- golint
|
|
- text: "G103: Use of unsafe calls should be audited"
|
|
linters:
|
|
- gosec
|
|
- text: "G104: Errors unhandled"
|
|
linters:
|
|
- gosec
|
|
- text: "G204: Subprocess launch(ed with (variable|function call)|ing should be audited)"
|
|
linters:
|
|
- gosec
|
|
- text: "(G301|G302): (Expect directory permissions to be 0750 or less|Expect file permissions to be 0600 or less)"
|
|
linters:
|
|
- gosec
|
|
- text: "G304: Potential file inclusion via variable"
|
|
linters:
|
|
- gosec
|
|
- text: "G306: Expect WriteFile permissions to be 0600 or less"
|
|
linters:
|
|
- gosec
|
|
- text: 'G307: Deferring unsafe method "Close" on type "*os.File"'
|
|
linters: gosec
|
|
|
|
# Exclude some linters from running on tests files.
|
|
- path: _test\.go
|
|
linters:
|
|
- errcheck
|
|
- gosec
|
|
|
|
# Suppress golint complaining about generated types in api/types/
|
|
- text: "type name will be used as (container|volume)\\.(Container|Volume).* by other packages, and that stutters; consider calling this"
|
|
path: "api/types/(volume|container)/"
|
|
linters:
|
|
- golint
|
|
# FIXME: evaluate these and fix where needed: G307: Deferring unsafe method "*os.File" on type "Close" (gosec)
|
|
- text: "G307: Deferring unsafe method"
|
|
linters:
|
|
- gosec
|
|
# FIXME temporarily suppress these. See #39924
|
|
- text: "SA1019: .*\\.Xattrs is deprecated: Use PAXRecords instead"
|
|
linters:
|
|
- staticcheck
|
|
# FIXME temporarily suppress these. See #39926
|
|
- text: "SA1019: httputil.NewClientConn"
|
|
linters:
|
|
- staticcheck
|
|
# FIXME temporarily suppress these (related to the ones above)
|
|
- text: "SA1019: httputil.ErrPersistEOF"
|
|
linters:
|
|
- staticcheck
|
|
# This code is doing some fun stuff with reflect and it trips up the linter.
|
|
- text: "field `foo` is unused"
|
|
path: "libnetwork/options/options_test.go"
|
|
linters:
|
|
- structcheck
|
|
- unused
|
|
# This field is only used on windows but is defined in a platform agnostic file.
|
|
# The linter doesn't understand that the field is used.
|
|
- text: "`resolverOnce` is unused"
|
|
path: libnetwork/network.go
|
|
linters:
|
|
- structcheck
|
|
- unused
|
|
|
|
# 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
|