.golangci.toml 437 B

123456789101112131415161718192021222324252627282930
  1. [run]
  2. deadline = "10m"
  3. tests = true
  4. [linters]
  5. disable-all = true
  6. enable = [
  7. "deadcode",
  8. "depguard",
  9. "errcheck",
  10. "goconst",
  11. "gocyclo",
  12. "gocritic",
  13. "gofmt",
  14. "golint",
  15. "gosec",
  16. "gosimple",
  17. "ineffassign",
  18. "maligned",
  19. "misspell",
  20. "nakedret",
  21. "staticcheck",
  22. "structcheck",
  23. "typecheck",
  24. "unconvert",
  25. "unparam",
  26. "varcheck",
  27. "vet",
  28. "vetshadow",
  29. ]