You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
654 B

  1. linters-settings:
  2. gofumpt:
  3. lang-version: '1.20'
  4. misspell:
  5. locale: US
  6. staticcheck:
  7. go: '1.20'
  8. checks: ['all', '-ST1005', '-ST1000', '-SA4000', '-SA9004', '-SA1019', '-SA1008', '-U1000', '-ST1016']
  9. linters:
  10. disable-all: true
  11. enable:
  12. - durationcheck
  13. - gocritic
  14. - gofmt
  15. - gofumpt
  16. - goimports
  17. - gomodguard
  18. - govet
  19. - ineffassign
  20. - misspell
  21. - revive
  22. - staticcheck
  23. - tenv
  24. - typecheck
  25. - unconvert
  26. - unused
  27. issues:
  28. exclude-use-default: false
  29. exclude:
  30. - should have a package comment
  31. - error strings should not be capitalized or end with punctuation or a newline