this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

re-enable staticcheck's SA4000 and SA4003 checks

We had fixed all valid occurrences of these warnings months ago,
but two bugs in staticcheck still caused false positives.
With the staticcheck version bump, we can finally re-enable the checks.

Signed-off-by: Daniel Martí <mvdan@mvdan.cc>
Change-Id: I1ac7a6cd466e59c237e851a455602d06eca874c8
Reviewed-on: https://review.gerrithub.io/c/cue-lang/cue/+/1232515
Reviewed-by: Roger Peppe <rogpeppe@gmail.com>
TryBot-Result: CUEcueckoo <cueckoo@cuelang.org>
Unity-Result: CUE porcuepine <cue.porcuepine@gmail.com>

-8
-8
staticcheck.conf
··· 5 5 # TODO: slowly get rid of all of these. 6 6 "-SA1019", 7 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 8 # unused code. 17 9 # TODO: slowly get rid of all of these. 18 10 "-U1000",