.golangci.yml 671 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. linters:
  2. enable-all: true
  3. disable:
  4. - cyclop
  5. - depguard
  6. - err113
  7. - exhaustive
  8. - exhaustruct
  9. - funlen
  10. - gci
  11. - gochecknoglobals
  12. - gochecknoinits
  13. - gocognit
  14. - goconst
  15. - gocyclo
  16. - godot
  17. - godox
  18. - gofmt
  19. - goimports
  20. - gomoddirectives
  21. - inamedparam
  22. - interfacebloat
  23. - ireturn
  24. - lll
  25. - maintidx
  26. - musttag
  27. - nestif
  28. - nlreturn
  29. - nonamedreturns
  30. - paralleltest
  31. - prealloc
  32. - protogetter
  33. - scopelint
  34. - tagalign
  35. - tagliatelle
  36. - testpackage
  37. - varnamelen
  38. - wrapcheck
  39. - wsl
  40. issues:
  41. exclude-dirs:
  42. - internal/gen
  43. - cmd/dev
  44. - repos