diff --git a/.luacheckrc b/.luacheckrc deleted file mode 100644 index bb55667f..00000000 --- a/.luacheckrc +++ /dev/null @@ -1,58 +0,0 @@ -stds.roblox = { - read_globals = { - game = { - other_fields = true, - }, - - -- Roblox globals - "script", - - -- Extra functions - "tick", "warn", "spawn", - "wait", "settings", "typeof", - - -- Types - "Vector2", "Vector3", - "Vector2int16", "Vector3int16", - "Color3", - "UDim", "UDim2", - "Rect", - "CFrame", - "Enum", - "Instance", - "DockWidgetPluginGuiInfo", - } -} - -stds.plugin = { - read_globals = { - "plugin", - } -} - -stds.testez = { - read_globals = { - "describe", - "it", "itFOCUS", "itSKIP", "itFIXME", - "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["**/*.server.lua"] = { - std = "+plugin", -} - -files["**/*.spec.lua"] = { - std = "+testez", -} \ No newline at end of file