darklua_core/rules/rename_variables/
globals.rs

1pub const DEFAULT: [&str; 40] = [
2    "arg",
3    "assert",
4    "collectgarbage",
5    "coroutine",
6    "debug",
7    "dofile",
8    "error",
9    "gcinfo",
10    "getfenv",
11    "getmetatable",
12    "io",
13    "ipairs",
14    "load",
15    "loadfile",
16    "loadstring",
17    "math",
18    "module",
19    "newproxy",
20    "next",
21    "os",
22    "package",
23    "pairs",
24    "pcall",
25    "print",
26    "rawequal",
27    "rawget",
28    "rawset",
29    "require",
30    "select",
31    "setfenv",
32    "setmetatable",
33    "string",
34    "table",
35    "tonumber",
36    "tostring",
37    "type",
38    "unpack",
39    "xpcall",
40    "_G",
41    "_VERSION",
42];
43
44pub const ROBLOX: [&str; 58] = [
45    "Axes",
46    "bit32",
47    "BrickColor",
48    "CatalogSearchParams",
49    "CellId",
50    "ColorSequence",
51    "ColorSequenceKeypoint",
52    "Color3",
53    "CFrame",
54    "DateTime",
55    "DebuggerManager",
56    "delay",
57    "DockWidgetPluginGuiInfo",
58    "elapsedTime",
59    "Enum",
60    "Faces",
61    "Instance",
62    "LoadLibrary",
63    "game",
64    "NumberRange",
65    "NumberSequence",
66    "NumberSequenceKeypoint",
67    "OverlapParams",
68    "PathWaypoint",
69    "PhysicalProperties",
70    "plugin",
71    "PluginDrag",
72    "PluginManager",
73    "printidentity",
74    "Random",
75    "Ray",
76    "RaycastParams",
77    "Rect",
78    "Region3",
79    "Region3int16",
80    "script",
81    "settings",
82    "shared",
83    "stats",
84    "spawn",
85    "task",
86    "tick",
87    "time",
88    "TweenInfo",
89    "typeof",
90    "UDim",
91    "UDim2",
92    "UserSettings",
93    "utf8",
94    "Vector2",
95    "Vector2int16",
96    "Vector3",
97    "Vector3int16",
98    "version",
99    "wait",
100    "warn",
101    "workspace",
102    "ypcall",
103];