Skip to content

Commit

Permalink
Exclude .eggs folder from analysis
Browse files Browse the repository at this point in the history
  • Loading branch information
ebellocchia committed Feb 12, 2024
1 parent c503cdb commit f37aaf6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
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|benchmark|build|docs|examples|readme|tests|my_tests|venv
exclude = .eggs|.tox|benchmark|build|docs|examples|readme|tests|my_tests|venv
1 change: 1 addition & 0 deletions prospector.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ doc-warnings: true
member-warnings: true

ignore-paths:
- .eggs
- .tox
- benchmark
- build
Expand Down
2 changes: 2 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ ignore =
# Line break before binary operator
W503
exclude =
.eggs
.tox
benchmark
build
Expand All @@ -90,6 +91,7 @@ lines_after_imports = 2
line_length = 120
multi_line_output = 5
skip =
.eggs
.tox
benchmark
build
Expand Down

0 comments on commit f37aaf6

Please sign in to comment.