Browse Source

staticcheck.conf: remove unnecessary warning

Signed-off-by: David Crawshaw <[email protected]>
David Crawshaw 4 years ago
parent
commit
ece138ffc3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      staticcheck.conf

+ 1 - 1
staticcheck.conf

@@ -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