You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are two types of global variable i want to ignore in luacheck.rc
One is global variables start with "g_", such as g_RecTbl, g_PlayerTbl
The other is global funcitions
How can i make it through luacheck?
Help wanted, thank you!
globals = { "g_*", -- global variables start with g_ are allowed, such as g_RecTbl, g_PlayerTbl "Some_Type_Of_Function", -- global funcitions are also allowed "EnumNetAction", "EnumNetActionNameMap" }
The text was updated successfully, but these errors were encountered:
There are two types of global variable i want to ignore in luacheck.rc
One is global variables start with "g_", such as g_RecTbl, g_PlayerTbl
The other is global funcitions
How can i make it through luacheck?
Help wanted, thank you!
globals = { "g_*", -- global variables start with g_ are allowed, such as g_RecTbl, g_PlayerTbl "Some_Type_Of_Function", -- global funcitions are also allowed "EnumNetAction", "EnumNetActionNameMap" }
The text was updated successfully, but these errors were encountered: