Created
April 8, 2023 20:42
-
-
Save rg3915/aa235fd4ac71e0612e755fcd26eab9a0 to your computer and use it in GitHub Desktop.
Makefile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
indenter: | |
find backend -name "*.html" | xargs djhtml -t 2 | |
autopep8: | |
find backend -name "*.py" | xargs autopep8 --max-line-length 120 --in-place | |
isort: | |
isort -m 3 * --skip migrations --skip .venv | |
lint: autopep8 isort indenter |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment