Ruby-Cogs/Makefile
2025-02-19 21:49:40 -05:00

17 lines
362 B
Makefile

gettext:
redgettext --command-docstrings --verbose --recursive pokecord/ --exclude-files 'pokecord/data/*'
upload_translations:
crowdin upload sources
download_translations:
crowdin download
reformat:
python3 -m black -l 99 `git ls-files "*.py"`
stylecheck:
python3 -m black -l 99 --check --diff `git ls-files "*.py"`
compile:
python3 -m compileall .