.golangci.yml 274 B

12345678910111213141516171819202122
  1. ---
  2. linters:
  3. enable:
  4. - errcheck
  5. - godot
  6. - gosimple
  7. - govet
  8. - ineffassign
  9. - misspell
  10. - revive
  11. - staticcheck
  12. - testifylint
  13. - unused
  14. linter-settings:
  15. godot:
  16. capital: true
  17. exclude:
  18. # Ignore "See: URL"
  19. - 'See:'
  20. misspell:
  21. locale: US