cuelang.org/go@v0.13.0/staticcheck.conf (about)

     1  # Run the default check list, minus some that don't pass just yet.
     2  # TODO: fix most of the issues below and re-enable their checks.
     3  checks = [
     4    "inherit",
     5    "-SA1019", # use of deprecated APIs
     6    "-SA4000", # identical expressions in && or || logic
     7    "-S1008", # simplify if/else to bool expression
     8    "-U1000", # unused code
     9  ]