From 79e5e64c4467c7c5a108eccfff5c4eec84b337f2 Mon Sep 17 00:00:00 2001 From: HybridDog Date: Sat, 10 Jun 2023 11:09:50 +0200 Subject: [PATCH] luacheck: Reduce the number of ignored codes After the recent changes, luacheck can be configured to be more strict now, for example to check for inconsistent indentation and undefined variables. --- .luacheckrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.luacheckrc b/.luacheckrc index 14e2168..394b571 100644 --- a/.luacheckrc +++ b/.luacheckrc @@ -4,5 +4,5 @@ read_globals = {"minetest", "vector", "VoxelArea", "ItemStack", } globals = {"worldedit"} -- Ignore these errors until someone decides to fix them -ignore = {"113", "211", "212", "213", "311", "312", "411", "412", "421", "422", - "431", "432", "611", "614", "621", "631"} +ignore = {"211", "212", "213", "311", "411", "412", "421", "422", + "431", "432", "631"}