linter_config.json 370 B

123456789101112131415161718192021222324252627
  1. {
  2. "Vendor": true,
  3. "DisableAll": true,
  4. "Enable": [
  5. "vet",
  6. "safesql",
  7. "errcheck",
  8. "goconst",
  9. "goimports",
  10. "varcheck",
  11. "gas",
  12. "staticcheck",
  13. "gosimple",
  14. "lll",
  15. "unconvert",
  16. "misspell",
  17. "unconvert"
  18. ],
  19. "Aggregate": true,
  20. "WarnUnmatchedNolint": true,
  21. "LineLength": 240,
  22. "Exclude": [
  23. "stun/const.go"
  24. ],
  25. "Deadline": "300s",
  26. "Skip": []
  27. }