Basic not working script

This commit is contained in:
AFCMS 2021-04-26 19:16:27 +02:00
parent 0867d6e406
commit 72e53a82d7
1 changed files with 22 additions and 0 deletions

22
tools/create_luacheck.py Normal file → Executable file
View File

@ -0,0 +1,22 @@
import os
import re
from pathlib import Path
path = "../mods/"
pattern = re.compile(r'[a-z]')
pathlist = Path(path).rglob('*.lua')
for path in pathlist:
path_in_str = str(path)
print(path_in_str)
with open(path_in_str) as f:
for line in f:
if pattern.search(line):
print(line)
for subdir, dirs, files in os.walk(path):
for file in files:
print(os.path.join(subdir, file))
filepath = subdir + os.sep + file
if filepath.endswith(".lua"):
print(filepath)