mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
d283c7fa2b
It has been declared deprecated by the author, and has a knack for false-positives (as well as giving bad advice when it comes to APIs -- which is quite clear when looking at "nolint: interfacer" comments). Signed-off-by: Aleksa Sarai <asarai@suse.de>
26 lines
456 B
JSON
26 lines
456 B
JSON
{
|
|
"Vendor": true,
|
|
"EnableGC": true,
|
|
"Sort": ["linter", "severity", "path"],
|
|
"Exclude": [
|
|
".*\\.pb\\.go",
|
|
"dockerversion/version_autogen.go",
|
|
"api/types/container/container_.*",
|
|
"api/types/volume/volume_.*",
|
|
"integration-cli/"
|
|
],
|
|
"Skip": ["integration-cli/"],
|
|
|
|
"Enable": [
|
|
"deadcode",
|
|
"gofmt",
|
|
"goimports",
|
|
"golint",
|
|
"gosimple",
|
|
"ineffassign",
|
|
"unconvert",
|
|
"vet"
|
|
],
|
|
|
|
"LineLength": 200
|
|
}
|