We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f5c8313 commit a747f32Copy full SHA for a747f32
1 file changed
Makefile
@@ -1,13 +1,16 @@
1
.PHONY: install
2
3
-install: install-node install-python
+install: install-node install-python install-hooks
4
5
install-node:
6
npm ci
7
8
install-python:
9
poetry install
10
11
+install-hooks: install-python
12
+ poetry run pre-commit install --install-hooks --overwrite
13
+
14
deep-clean:
15
find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +
16
0 commit comments