1234567891011121314151617181920212223242526272829 |
- {
- "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
- }
|