2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-14 19:15:41 +00:00

general linting fixes

This commit is contained in:
Matthias
2021-09-18 03:27:19 +02:00
parent b9ba6b9225
commit ecc86e0989
5 changed files with 10 additions and 8 deletions

View File

@ -28,6 +28,7 @@ print("=================================")
print("Checking static javascript files:")
print("=================================")
def check_invalid_tag(data):
pattern = r"{%(\w+)"
@ -45,6 +46,7 @@ def check_invalid_tag(data):
return err_count
def check_prohibited_tags(data):
allowed_tags = [
@ -78,7 +80,7 @@ def check_prohibited_tags(data):
has_trans = True
if not has_trans:
print(f" > file is missing 'trans' tags")
print(" > file is missing 'trans' tags")
err_count += 1
return err_count

View File

@ -24,7 +24,7 @@ for line in str(out.decode()).split('\n'):
if len(locales) > 0:
print("There are {n} unstaged locale files:".format(n=len(locales)))
for l in locales:
print(" - {l}".format(l=l))
for lang in locales:
print(" - {l}".format(l=lang))
sys.exit(len(locales))
sys.exit(len(locales))

View File

@ -28,4 +28,4 @@ print("There are {n} unstaged migration files:".format(n=len(migrations)))
for m in migrations:
print(" - {m}".format(m=m))
sys.exit(len(migrations))
sys.exit(len(migrations))

View File

@ -84,4 +84,4 @@ if __name__ == '__main__':
print(f"Release tag '{args.tag}' does not match INVENTREE_SW_VERSION '{version}'")
sys.exit(1)
sys.exit(0)
sys.exit(0)