We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 988a683 commit f9aeb46Copy full SHA for f9aeb46
Makefile
@@ -18,13 +18,8 @@ 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
- @version=$$(pyenv versions --bare | grep '^3\.10' | sort -rV | head -n 1) && \
22
- pyenv local $$version && \
23
- poetry install --no-root && \
24
- npm run lint && \
25
- find . -name '*.py' \
26
- -not -path '*/.venv/*' \
27
- -not -path '*/.terraform/*' | xargs poetry run flake8
+ npm run lint
+ find . -name '*.py' -not -path '**/.venv/*' -not -path '**/.terraform/*'| xargs poetry run flake8
28
29
#Removes build/ + dist/ directories
30
clean:
0 commit comments