From f37aaf640e6d079881e2419dbaf16e470b6ecaa3 Mon Sep 17 00:00:00 2001 From: Emanuele Bellocchia <54482000+ebellocchia@users.noreply.github.com> Date: Mon, 12 Feb 2024 14:35:45 +0100 Subject: [PATCH] Exclude .eggs folder from analysis --- mypy.ini | 2 +- prospector.yaml | 1 + tox.ini | 2 ++ 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/mypy.ini b/mypy.ini index 958f6a0e..110756a3 100644 --- a/mypy.ini +++ b/mypy.ini @@ -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 diff --git a/prospector.yaml b/prospector.yaml index 3535e02b..12f4a9c8 100644 --- a/prospector.yaml +++ b/prospector.yaml @@ -4,6 +4,7 @@ doc-warnings: true member-warnings: true ignore-paths: + - .eggs - .tox - benchmark - build diff --git a/tox.ini b/tox.ini index 19ccbda3..87229837 100644 --- a/tox.ini +++ b/tox.ini @@ -67,6 +67,7 @@ ignore = # Line break before binary operator W503 exclude = + .eggs .tox benchmark build @@ -90,6 +91,7 @@ lines_after_imports = 2 line_length = 120 multi_line_output = 5 skip = + .eggs .tox benchmark build