Skip to content

Commit

Permalink
Exclude .eggs and venv from analysis
Browse files Browse the repository at this point in the history
  • Loading branch information
ebellocchia committed Feb 12, 2024
1 parent 90d073d commit 809e8cb
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion mypy.ini
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[mypy]
ignore_missing_imports = True
exclude = .tox|build
exclude = .eggs|.tox|build|venv
2 changes: 2 additions & 0 deletions prospector.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,10 @@ doc-warnings: true
member-warnings: true

ignore-paths:
- .eggs
- .tox
- build
- venv

ignore-patterns:
- setup.py
Expand Down
6 changes: 5 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
[tox]
skip_missing_interpreters = true
envlist = py{37,38,39,310}
envlist = py{37,38,39,310,311,312}

[flake8]
ignore =
N802 # function name should be lowercase
W504 # line break after binary operator
exclude =
.eggs
.tox
build
venv
setup.py
max-line-length=130
per-file-ignores =
Expand All @@ -22,6 +24,8 @@ lines_after_imports = 2
line_length = 120
multi_line_output = 5
skip =
.eggs
.tox
build
venv
setup.py

0 comments on commit 809e8cb

Please sign in to comment.