adding .luacheckrc preparing for some lua linting

This commit is contained in:
wes
2025-06-11 23:32:15 -04:00
parent af5ead4c33
commit dd3547d67a
Executable
+21
View File
@@ -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"
}