Fix: Allow linting to run without activating the poetry environment.

This commit is contained in:
Amritanshu Agrawal 2021-06-21 10:47:33 +05:30
parent 27205f7790
commit 15cd40d779
1 changed files with 3 additions and 3 deletions

View File

@ -4,6 +4,6 @@ cd "$parent_path/bookie" || exit
npx prettier --write src/app
npx ng lint --fix
cd "$parent_path/barker" || exit
isort barker
black barker
flake8 barker
poetry run isort barker
poetry run black barker
poetry run flake8 barker