Added
- Added an option to ignore the presence of certain exceptions. This is
useful if your project has a common error which you don't want to have to
document everywhere (for example, a custom assertion error.) This can be
used through the `ignore_raise` configuration option, or command-line option.
Thanks to palt0 for the pull request!
- Added `ignore_regex` as a command-line option (this already existed as a
configuration option, but I overlooked it as a command-line option.) Thanks
to saroad2 for the pull request!
Changed
- Deprecated Python3.5 support, since it breaks the Travis CI build. I've left
the dockerfile test for it in, as everything still works.
- Added Python3.9 support.
Fixed
- Changed *config.cfg* to *setup.cfg* in the pre-commit documentation, which was
the correct name. Thanks to nuno-andre for the pull request.
- Load the `enable` option from the configuration file, so that disabled-by-default
errors can be shown. Thanks to palt0 for the pull request!