1# Run the default check list, minus some that don't pass just yet.
2checks = [
3 "inherit",
4 # use of deprecated APIs.
5 # TODO: slowly get rid of all of these.
6 "-SA1019",
7
8 # identical expressions in && or || logic
9 # TODO: likely a bug in our code.
10 "-SA4000",
11
12 # "no value of type uint is less than 0" incompatibility with x/tools/cmd/stringer.
13 # TODO: remove in the future; see https://github.com/golang/go/issues/41436#issuecomment-3426425527
14 "-SA4003",
15
16 # unused code.
17 # TODO: slowly get rid of all of these.
18 "-U1000",
19]