anki/ftl/format_check.py

11 lines
250 B
Python
Raw Normal View History

2020-11-22 06:30:59 +01:00
import os
import format
import sys
import glob
template_root = os.path.dirname(sys.argv[1])
template_files = glob.glob(os.path.join(template_root, "*", "*.ftl"), recursive=True)
if not format.check_files(template_files, fix=False):
sys.exit(1)