Skip to content

Commit a3b660c

Browse files
committed
Add exclude paths for flake8
1 parent 9227842 commit a3b660c

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.flake8

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[flake8]
22
max-line-length = 88
3-
exclude = **/migrations/*.py,
3+
exclude = .tox,.git,*/migrations/*,venv,dist,build,*.pyc,*.egg-info
44
ignore = E203,E231,E266,E501,W503,B950,F405
55
max-complexity = 11

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ install: ## Install dependencies.
1717
pip install -e .[test]
1818

1919
format: ## Format the code.
20-
black src/ tests/ examples/
21-
isort src/ tests/ examples/
22-
flake8 src/ tests/ examples/
20+
black .
21+
isort .
22+
flake8 .
2323

2424
test: ## Test the project.
2525
pytest --cov

0 commit comments

Comments
 (0)