We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d3ca8ce commit 84eb7cbCopy full SHA for 84eb7cb
Makefile
@@ -18,9 +18,12 @@ install: install-node install-python .git/hooks/pre-commit
18
19
#Run the npm linting script (specified in package.json). Used to check the syntax and formatting of files.
20
lint:
21
- pyenv local $(pyenv versions --bare | grep '^3\.10' | sort -rV | head -n 1)
22
- npm run lint
23
- find . -name '*.py' -not -path '**/.venv/*' -not -path '**/.terraform/*'| xargs poetry run flake8
+ @version=$$(pyenv versions --bare | grep '^3\.10' | sort -rV | head -n 1) && \
+ pyenv local $$version && \
+ npm run lint && \
24
+ find . -name '*.py' \
25
+ -not -path '*/.venv/*' \
26
+ -not -path '*/.terraform/*' | xargs poetry run flake8
27
28
#Removes build/ + dist/ directories
29
clean:
0 commit comments