Fixup the create_luacheck file and use it

This commit is contained in:
Nathan Fritzler 2022-07-04 22:34:45 -06:00
parent 5b43044368
commit d39e08c080
Signed by: Lazerbeak12345
GPG Key ID: 736DE8D7C58AD7FE
2 changed files with 6 additions and 9 deletions

View File

@ -45,11 +45,8 @@ read_globals = {
------
--GENERAL
"default",
"mcljepc_core",
--ENTITIES
"cmi",
--HUD
"sfinv", "sfinv_buttons", "unified_inventory", "cmsg", "inventory_plus",
}
--MAPGEN
"mcljepc_mapgen",
}

View File

@ -19,7 +19,7 @@ pathlist = Path(path).rglob('*.lua')
for path in pathlist:
path_in_str = str(path)
# print(path_in_str)
trouve = False
found = False
with open(path_in_str) as f:
local_vars = []
for i, line in enumerate(f.readlines()):
@ -38,7 +38,7 @@ for path in pathlist:
local_vars.append(n.group('local_var'))
if not found:
nb_varloc = len(variables_locales)
nb_varloc = len(local_vars)
#print(path_in_str, ": -", "({} variables locales)".format(nb_varloc) if nb_varloc > 0 else '')
print(', '.join(['"{}"'.format(v) for v in global_vars]))