Skip to content

Commit

Permalink
exclude venv from formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
sh-rp committed Nov 23, 2023
1 parent a2bb35d commit 49978c5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -48,15 +48,15 @@ dev: has-poetry

lint:
./check-package.sh
poetry run black ./ --diff --exclude=".*syntax_error.py"
poetry run black ./ --diff --exclude=".*syntax_error.py|\.venv.*"
# poetry run isort ./ --diff
poetry run mypy --config-file mypy.ini dlt tests
poetry run flake8 --max-line-length=200 dlt
poetry run flake8 --max-line-length=200 tests --exclude tests/reflection/module_cases
# $(MAKE) lint-security

format:
poetry run black ./ --exclude=".*syntax_error.py"
poetry run black ./ --exclude=".*syntax_error.py|\.venv.*"
# poetry run isort ./

test-and-lint-snippets:
Expand Down

0 comments on commit 49978c5

Please sign in to comment.