From c252069fd5ffe058231ff127c6362de7e7bd1622 Mon Sep 17 00:00:00 2001 From: Rob Shakir Date: Fri, 13 Dec 2024 18:12:10 +0000 Subject: [PATCH] Ignore deprecated warnings in staticcheck configuration. * (A) staticcheck.conf - Skip SA1019 which provides deprecated errors, since this repo contains only generated code, then there's nothing we can do about these. --- staticcheck.conf | 1 + 1 file changed, 1 insertion(+) create mode 100644 staticcheck.conf diff --git a/staticcheck.conf b/staticcheck.conf new file mode 100644 index 0000000..2e9a224 --- /dev/null +++ b/staticcheck.conf @@ -0,0 +1 @@ +checks = ["inherit", "-SA1019"]