Skip to content

Instantly share code, notes, and snippets.

@rg3915
Created April 8, 2023 20:42
Show Gist options
  • Save rg3915/aa235fd4ac71e0612e755fcd26eab9a0 to your computer and use it in GitHub Desktop.
Save rg3915/aa235fd4ac71e0612e755fcd26eab9a0 to your computer and use it in GitHub Desktop.
Makefile
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