...
1version: "2"
2run:
3 timeout: 5m
4 tests: false
5linters:
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$
28formatters:
29 exclusions:
30 generated: lax
31 paths:
32 - third_party$
33 - builtin$
34 - examples$
View as plain text