Skip to content

Commit f9aeb46

Browse files
committed
Revert linting
1 parent 988a683 commit f9aeb46

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

Makefile

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,8 @@ install: install-node install-python .git/hooks/pre-commit
1818

1919
#Run the npm linting script (specified in package.json). Used to check the syntax and formatting of files.
2020
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
21+
npm run lint
22+
find . -name '*.py' -not -path '**/.venv/*' -not -path '**/.terraform/*'| xargs poetry run flake8
2823

2924
#Removes build/ + dist/ directories
3025
clean:

0 commit comments

Comments
 (0)