kopia lustrzana https://github.com/wagtail/bakerydemo
31 wiersze
706 B
Makefile
31 wiersze
706 B
Makefile
.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
|