21 lines
336 B
Lua
Executable File
21 lines
336 B
Lua
Executable File
-- .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"
|
|
} |