croissant-editor / Makefile
marcenacp's picture
Initial commit
cb5b71d
raw
history blame
No virus
385 Bytes
black:
black \
--line-length 88 \
--preview \
.
isort:
isort \
--profile google \
--line-length 88 \
--use-parentheses \
--project mlcroissant \
--project components \
--project core \
--project events \
--project views \
--project state \
--project utils \
--multi-line 3 \
--thirdparty datasets \
.
format: black isort
pytest:
PYTHONPATH=. pytest