Files
hacs_default/scripts/is_sorted.py
Joakim Sørensen d046ee8add Add template (#1827)
2023-04-04 21:24:54 +02:00

24 lines
567 B
Python

import json
categories = [
"blacklist",
"appdaemon",
"integration",
"netdaemon",
"plugin",
"python_script",
"template",
"theme",
]
for category in categories:
with open(category, "r") as cat_file:
content = json.loads(cat_file.read())
if content != sorted(content, key=str.casefold):
print(f"{category} is not sorted correctly")
print("It should look like")
print(sorted(content, key=str.casefold))
print("But it is")
print(content)
exit(1)