mirror of
https://github.com/AmberGraceRblx/luau-promise.git
synced 2025-04-24 15:50:01 +00:00
41 lines
534 B
Text
41 lines
534 B
Text
|
stds.roblox = {
|
||
|
globals = {
|
||
|
"game"
|
||
|
},
|
||
|
read_globals = {
|
||
|
-- Roblox globals
|
||
|
"script",
|
||
|
|
||
|
-- Extra functions
|
||
|
"tick", "warn", "spawn",
|
||
|
"wait", "settings", "typeof",
|
||
|
|
||
|
-- Types
|
||
|
"Vector2", "Vector3",
|
||
|
"Color3",
|
||
|
"UDim", "UDim2",
|
||
|
"Rect",
|
||
|
"CFrame",
|
||
|
"Enum",
|
||
|
"Instance",
|
||
|
}
|
||
|
}
|
||
|
|
||
|
stds.testez = {
|
||
|
read_globals = {
|
||
|
"describe",
|
||
|
"it", "itFOCUS", "itSKIP",
|
||
|
"FOCUS", "SKIP", "HACK_NO_XPCALL",
|
||
|
"expect",
|
||
|
}
|
||
|
}
|
||
|
|
||
|
ignore = {
|
||
|
"212", -- unused arguments
|
||
|
}
|
||
|
|
||
|
std = "lua51+roblox"
|
||
|
|
||
|
files["**/*.spec.lua"] = {
|
||
|
std = "+testez",
|
||
|
}
|