From 1e118381f8276fe66a2cad02f1b9f4535e7e253e Mon Sep 17 00:00:00 2001 From: Reuh Date: Fri, 24 Dec 2021 00:05:53 +0100 Subject: [PATCH] Ignore shadowing warning in cancheck for temporary Candran variables --- bin/cancheck | 1 + 1 file changed, 1 insertion(+) diff --git a/bin/cancheck b/bin/cancheck index d9d3dcc..1d3950f 100644 --- a/bin/cancheck +++ b/bin/cancheck @@ -181,6 +181,7 @@ local oldRunner = runner.new function runner.new(opts) -- Disable max line length checking (it is compiled code...) opts.max_line_length = false + opts.ignore = { "4[23]1/__CAN_.*" } return oldRunner(opts) end