staticcheck.conf: remove unnecessary warning

Signed-off-by: David Crawshaw <crawshaw@tailscale.com>
This commit is contained in:
David Crawshaw 2021-06-22 12:26:13 -07:00
parent bb363095a5
commit ece138ffc3

View File

@ -1,6 +1,6 @@
# Full list: https://staticcheck.io/docs/checks
checks = [
"SA*", "-SA1019", "-SA2001", # SA* are mostly legit code errors
"SA*", "-SA1019", "-SA2001", "-SA9003", # SA* are mostly legit code errors
# S1?? are "code simplifications" which we consider unnecessary