Skip to content

Commit

Permalink
Add a Makefile to ease formatting.
Browse files Browse the repository at this point in the history
  • Loading branch information
marcenacp committed Nov 10, 2023
1 parent cfcb92c commit 89499b8
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions wizard/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
black:
black \
--line-length 88 \
--preview \
.

isort:
isort \
--profile google \
--line-length 88 \
--use-parentheses \
--project mlcroissant \
--project components \
--project core \
--project views \
--project state \
--project utils \
--multi-line 3 \
--thirdparty datasets \
.

format: black isort

0 comments on commit 89499b8

Please sign in to comment.