123456789101112131415161718192021222324252627282930 |
- .PHONY: lint format
- help:
- @echo "lint - check style with black, flake8, sort python with isort, and indent html"
- @echo "format - enforce a consistent code style across the codebase and sort python files with isort"
- lint-server:
- black --target-version py37 --check --diff .
- flake8
- isort --check-only --diff .
- curlylint --parse-only bakerydemo
- git ls-files '*.html' | xargs djhtml --check
- lint-client:
- npm run lint:css --silent
- npm run lint:js --silent
- npm run lint:format --silent
- lint: lint-server lint-client
- format-server:
- black --target-version py37 .
- isort .
- git ls-files '*.html' | xargs djhtml -i
- format-client:
- npm run format
- npm run fix:js
- format: format-server format-client
|