26 lines
422 B
JSON
26 lines
422 B
JSON
|
{
|
||
|
"Linters": {
|
||
|
"license": "./scripts/check_license.sh:PATH:LINE:MESSAGE",
|
||
|
"forked": "./scripts/check_forked.sh:PATH:LINE:MESSAGE"
|
||
|
},
|
||
|
"Enable": [
|
||
|
"forked",
|
||
|
"gocyclo",
|
||
|
"gofmt",
|
||
|
"goimports",
|
||
|
"golint",
|
||
|
"license",
|
||
|
"misspell",
|
||
|
"vet"
|
||
|
],
|
||
|
"Exclude": [
|
||
|
"x509/",
|
||
|
"asn1/",
|
||
|
".+\\.pb\\.go",
|
||
|
".+\\.pb\\.gw\\.go",
|
||
|
"mock_.+\\.go"
|
||
|
],
|
||
|
"Cyclo": 40,
|
||
|
"Vendor": true
|
||
|
}
|