diff options
| author | Ian Cordasco <graffatcolmingov@gmail.com> | 2016-07-28 19:24:06 -0500 |
|---|---|---|
| committer | Ian Cordasco <graffatcolmingov@gmail.com> | 2016-07-28 19:28:13 -0500 |
| commit | c670217c24db25ad3cab699f6394372a94777379 (patch) | |
| tree | fd4bee5179fd3c5cddbea2781e18d5d8ed4ed73e /docs | |
| parent | c0e506657790babc7e5d3c560afb6e44e160b2f5 (diff) | |
| download | flake8-c670217c24db25ad3cab699f6394372a94777379.tar.gz | |
Allow plugins that are on by default to be ignored
Previously, to ensure that plugins on by default were reported, we
added them to the select list. This means that ignoring them became
impossible. To accomodate our reporting logic and a user's ability
to ignore, we need to keep our select and extended select lists
separated.
This allows us to have a better understanding of who is selecting what,
where, and how and make our decision as to whether or not an error
should be reported more wisely.
Closes #195
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/source/release-notes/3.0.3.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/source/release-notes/3.0.3.rst b/docs/source/release-notes/3.0.3.rst index 40c9258..ded24c7 100644 --- a/docs/source/release-notes/3.0.3.rst +++ b/docs/source/release-notes/3.0.3.rst @@ -4,7 +4,11 @@ - Fix ``# noqa`` comments followed by a ``:`` and explanation broken by 3.0.0 (See also `GitLab#178`_) +- Fix issue where users were unable to ignore plugin errors that were on + by default. (See also `GitLab#195`_) .. links .. _GitLab#178: https://gitlab.com/pycqa/flake8/issues/178 +.. _GitLab#195: + https://gitlab.com/pycqa/flake8/issues/195 |
