diff --git a/Makefile b/Makefile index 6178bfafa8..7629942aba 100644 --- a/Makefile +++ b/Makefile @@ -47,3 +47,11 @@ pre-commit: # setup pre commit dependencies pip3 install -r requirements/integration.txt pre-commit install + +format: py-format js-format + +py-format: + python -m black superset + +js-format: + cd superset-frontend; npm run prettier