From ece138ffc3335f49eaff85b71f5cc753f57bbdca Mon Sep 17 00:00:00 2001 From: David Crawshaw Date: Tue, 22 Jun 2021 12:26:13 -0700 Subject: [PATCH] staticcheck.conf: remove unnecessary warning Signed-off-by: David Crawshaw --- staticcheck.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/staticcheck.conf b/staticcheck.conf index 7e701562b..1e51c7d56 100644 --- a/staticcheck.conf +++ b/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