1
0
Fork 0
mirror of https://github.com/Reuh/candran.git synced 2025-10-27 17:59:30 +00:00

Ignore shadowing warning in cancheck for temporary Candran variables

This commit is contained in:
Étienne Fildadut 2021-12-24 00:05:53 +01:00
parent 7131c5c8b1
commit 1e118381f8

View file

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