From 440cdcc5044dfa5bdf4715bd10f01479feb039e6 Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Tue, 20 Sep 2022 20:03:36 +0100 Subject: [PATCH] Fix luacheck The problem was that we moved bit.lua from worldeditadditions to worldeditadditions_core, but failed to update .luacheckrc --- .luacheckrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.luacheckrc b/.luacheckrc index 27630b7..c54011e 100644 --- a/.luacheckrc +++ b/.luacheckrc @@ -3,7 +3,7 @@ codes = true exclude_files = { ".luarocks/*", - "worldeditadditions/utils/bit.lua" + "worldeditadditions_core/utils/bit.lua" } files["worldeditadditions_core/register/check.lua"] = { read_globals = { "table" } }