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" }

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" }