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.
|
- version: "2"
- run:
- timeout: 5m
- tests: false
- linters:
- settings:
- staticcheck:
- checks:
- - all
- # Incorrect or missing package comment.
- # https://staticcheck.dev/docs/checks/#ST1000
- - -ST1000
- # Omit embedded fields from selector expression.
- # https://staticcheck.dev/docs/checks/#QF1008
- - -QF1008
- - -ST1003
- exclusions:
- generated: lax
- presets:
- - comments
- - common-false-positives
- - legacy
- - std-error-handling
- paths:
- - third_party$
- - builtin$
- - examples$
- formatters:
- exclusions:
- generated: lax
- paths:
- - third_party$
- - builtin$
- - examples$
|