mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
![Sebastiaan van Stijn](/assets/img/avatar_default.png)
- all changes here are attributed to difference in behaviour between, namely: - resolution of secondary test dependencies - prunning of non-Go files Signed-off-by: Ilya Dmitrichenko <errordeveloper@gmail.com> Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
28 lines
524 B
JSON
28 lines
524 B
JSON
{
|
|
"Deadline": "60s",
|
|
"Linters": {
|
|
"license": "./scripts/check_license.sh:PATH:LINE:MESSAGE",
|
|
"forked": "./scripts/check_forked.sh:PATH:LINE:MESSAGE",
|
|
"unforked": "./scripts/check_unforked.sh:PATH:LINE:MESSAGE"
|
|
},
|
|
"Enable": [
|
|
"forked",
|
|
"gocyclo",
|
|
"gofmt",
|
|
"goimports",
|
|
"golint",
|
|
"license",
|
|
"misspell",
|
|
"unforked",
|
|
"vet"
|
|
],
|
|
"Exclude": [
|
|
"x509/",
|
|
"asn1/",
|
|
".+\\.pb\\.go",
|
|
".+\\.pb\\.gw\\.go",
|
|
"mock_.+\\.go"
|
|
],
|
|
"Cyclo": 40,
|
|
"Vendor": true
|
|
}
|