From dd3547d67abe02321bcb9234320beb47111a6f1e Mon Sep 17 00:00:00 2001 From: Wesley Ray Date: Wed, 11 Jun 2025 23:32:15 -0400 Subject: [PATCH] adding .luacheckrc preparing for some lua linting --- .luacheckrc | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100755 .luacheckrc diff --git a/.luacheckrc b/.luacheckrc new file mode 100755 index 0000000..2de98b9 --- /dev/null +++ b/.luacheckrc @@ -0,0 +1,21 @@ +-- .luacheckrc +-- Defines globals to prevent false positives during the sacred linting process. +read_globals = { + "require", + "print", + "io", + "os", + "string", + "table", + "math", + "pcall", + "setmetatable", + "getmetatable", + "ipairs", + "pairs", + "tonumber", + "tostring", + "type", + "next", + "rawget" +} \ No newline at end of file