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
695 B

  1. version: "2"
  2. run:
  3. timeout: 5m
  4. tests: false
  5. linters:
  6. settings:
  7. staticcheck:
  8. checks:
  9. - all
  10. # Incorrect or missing package comment.
  11. # https://staticcheck.dev/docs/checks/#ST1000
  12. - -ST1000
  13. # Omit embedded fields from selector expression.
  14. # https://staticcheck.dev/docs/checks/#QF1008
  15. - -QF1008
  16. - -ST1003
  17. exclusions:
  18. generated: lax
  19. presets:
  20. - comments
  21. - common-false-positives
  22. - legacy
  23. - std-error-handling
  24. paths:
  25. - third_party$
  26. - builtin$
  27. - examples$
  28. formatters:
  29. exclusions:
  30. generated: lax
  31. paths:
  32. - third_party$
  33. - builtin$
  34. - examples$