django-modeltranslation/Makefile
Serhii Tereshchenko 5a3cd77ddb chore(lsp): Move --pretty argument to command line
Because it breaks pylsp output in neovim
2024-06-01 09:50:47 +03:00

17 lines
249 B
Makefile

release:
standard-version
publish: clean
python -m build
twine upload dist/*
git push --follow-tags
clean:
rm -rf dist
lint:
ruff check modeltranslation
ruff format --check modeltranslation *.py
typecheck:
mypy --pretty modeltranslation