Clients/Client2018/content/internal/AppShell/.luacheckrc

49 lines
711 B
Lua

stds.roblox = {
globals = {
"game"
},
read_globals = {
-- Roblox globals
"script",
"utf8",
-- Extra functions
"tick", "warn", "spawn",
"wait", "settings", "typeof",
"UserSettings",
-- Types
"Vector2", "Vector3",
"Color3",
"UDim", "UDim2",
"Rect",
"CFrame",
"Enum",
"Instance",
"TweenInfo",
}
}
stds.testez = {
read_globals = {
"describe",
"it", "itFOCUS", "itSKIP",
"FOCUS", "SKIP", "HACK_NO_XPCALL",
"expect",
}
}
ignore = {
"212", -- unused arguments
"421", -- shadowing local variable
"422", -- shadowing argument
"431", -- shadowing upvalue
"432", -- shadowing upvalue argument
}
std = "lua51+roblox"
files["**/*.spec.lua"] = {
std = "+testez",
}