Set soft error limit default to -1 (unlimited) by rohitsanj · Pull Request #15138 · python/mypy

@rohitsanj

Fixes #14915

When there are more than 200 errors to report, mypy "softly" trims the output without notifying the user that it did so. We want to currently disable this by setting the --soft-error-limit default to -1 which would list out all the errors.

@rohitsanj

@rohitsanj rohitsanj changed the title Set MANY_ERRORS_THRESHOLD default to -1 (unlimited) Set soft error limit default to -1 (unlimited)

Apr 25, 2023

hauntsaninja

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for fixing!

@github-actions

This comment has been minimized.

ikonst

@rohitsanj

@github-actions

According to mypy_primer, this change has no effect on the checked open source code. 🤖🎉

hauntsaninja pushed a commit that referenced this pull request

Nov 23, 2023
Default value of `MANY_ERRORS_THRESHOLD` was set to `-1` in
#15138, which is also the default
value of the `--soft-error-limit` CLI option. However the CLI docs were
not updated accordingly.