2018-06-17 07:32:44 +00:00
|
|
|
{
|
2018-07-07 01:22:35 +00:00
|
|
|
"Deadline": "60s",
|
2018-06-17 07:32:44 +00:00
|
|
|
"Linters": {
|
|
|
|
"license": "./scripts/check_license.sh:PATH:LINE:MESSAGE",
|
2018-07-03 07:25:07 +00:00
|
|
|
"forked": "./scripts/check_forked.sh:PATH:LINE:MESSAGE",
|
|
|
|
"unforked": "./scripts/check_unforked.sh:PATH:LINE:MESSAGE"
|
2018-06-17 07:32:44 +00:00
|
|
|
},
|
|
|
|
"Enable": [
|
|
|
|
"forked",
|
|
|
|
"gocyclo",
|
|
|
|
"gofmt",
|
|
|
|
"goimports",
|
|
|
|
"golint",
|
|
|
|
"license",
|
|
|
|
"misspell",
|
2018-07-03 07:25:07 +00:00
|
|
|
"unforked",
|
2018-06-17 07:32:44 +00:00
|
|
|
"vet"
|
|
|
|
],
|
|
|
|
"Exclude": [
|
|
|
|
"x509/",
|
|
|
|
"asn1/",
|
|
|
|
".+\\.pb\\.go",
|
|
|
|
".+\\.pb\\.gw\\.go",
|
|
|
|
"mock_.+\\.go"
|
|
|
|
],
|
|
|
|
"Cyclo": 40,
|
|
|
|
"Vendor": true
|
|
|
|
}
|