gometalinter.json 524 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "Deadline": "60s",
  3. "Linters": {
  4. "license": "./scripts/check_license.sh:PATH:LINE:MESSAGE",
  5. "forked": "./scripts/check_forked.sh:PATH:LINE:MESSAGE",
  6. "unforked": "./scripts/check_unforked.sh:PATH:LINE:MESSAGE"
  7. },
  8. "Enable": [
  9. "forked",
  10. "gocyclo",
  11. "gofmt",
  12. "goimports",
  13. "golint",
  14. "license",
  15. "misspell",
  16. "unforked",
  17. "vet"
  18. ],
  19. "Exclude": [
  20. "x509/",
  21. "asn1/",
  22. ".+\\.pb\\.go",
  23. ".+\\.pb\\.gw\\.go",
  24. "mock_.+\\.go"
  25. ],
  26. "Cyclo": 40,
  27. "Vendor": true
  28. }