From 5bfa6d67ee9d984ccc6a1b1b26696acf3bbb410b Mon Sep 17 00:00:00 2001 From: SmallJoker Date: Sun, 20 Oct 2024 14:40:58 +0200 Subject: [PATCH] Add .luacheckrc --- .luacheckrc | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .luacheckrc diff --git a/.luacheckrc b/.luacheckrc new file mode 100644 index 0000000..7e8fe4d --- /dev/null +++ b/.luacheckrc @@ -0,0 +1,18 @@ +unused_args = false -- Allow them +max_line_length = 999 + +globals = { + -- None +} + +read_globals = { + "ItemStack", + + "core", + "minetest", + + "default", + "hopper", + "mcl_formspec", + "mcl_sounds", +}