2
0

.golangci.yaml 381 B

1234567891011121314151617181920212223
  1. version: "2"
  2. linters:
  3. default: none
  4. enable:
  5. - testifylint
  6. exclusions:
  7. generated: lax
  8. presets:
  9. - comments
  10. - common-false-positives
  11. - legacy
  12. - std-error-handling
  13. paths:
  14. - third_party$
  15. - builtin$
  16. - examples$
  17. formatters:
  18. exclusions:
  19. generated: lax
  20. paths:
  21. - third_party$
  22. - builtin$
  23. - examples$