From 62a952bc9b10a30dc3ea497abab82d1d7bcdc1b0 Mon Sep 17 00:00:00 2001 From: HybridDog Date: Sun, 17 Jan 2021 12:52:08 +0100 Subject: [PATCH] Add a .luacheckrc file for luacheck --- .luacheckrc | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .luacheckrc diff --git a/.luacheckrc b/.luacheckrc new file mode 100644 index 0000000..fb59218 --- /dev/null +++ b/.luacheckrc @@ -0,0 +1,7 @@ +read_globals = {"minetest", "vector", "VoxelArea", "ItemStack", + "table", + "unified_inventory", "sfinv", "smart_inventory", "inventory_plus" +} +globals = {"worldedit"} +-- Ignore these style errors until someone decides to fix them +ignore = {"411", "412", "421", "422", "431", "432", "631"}