Платформа ЦРНП "Мирокод" для разработки проектов
https://git.mirocod.ru
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
524 B
28 lines
524 B
{ |
|
"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 |
|
}
|
|
|