From d15aada0333735174328a72f7b7812143936a99b Mon Sep 17 00:00:00 2001 From: Rohit Sanjay Date: Tue, 25 Apr 2023 16:40:03 -0600 Subject: [PATCH 1/2] Set MANY_ERRORS_THRESHOLD default to -1 (unlimited) --- mypy/defaults.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mypy/defaults.py b/mypy/defaults.py index 02562b5f0963..29fcc26ccbbb 100644 --- a/mypy/defaults.py +++ b/mypy/defaults.py @@ -44,5 +44,5 @@ ] # Threshold after which we sometimes filter out most errors to avoid very -# verbose output -MANY_ERRORS_THRESHOLD: Final = 200 +# verbose output. Current default is to show all errors. +MANY_ERRORS_THRESHOLD: Final = -1 From 61b970eb3268be2a58b2cea7332f68ecd17248ab Mon Sep 17 00:00:00 2001 From: Rohit Sanjay Date: Tue, 25 Apr 2023 17:37:06 -0600 Subject: [PATCH 2/2] Remove "current" since not providing historical context --- mypy/defaults.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mypy/defaults.py b/mypy/defaults.py index 29fcc26ccbbb..d167997464f4 100644 --- a/mypy/defaults.py +++ b/mypy/defaults.py @@ -44,5 +44,5 @@ ] # Threshold after which we sometimes filter out most errors to avoid very -# verbose output. Current default is to show all errors. +# verbose output. The default is to show all errors. MANY_ERRORS_THRESHOLD: Final = -1