diff options
author | Daniƫl van Noord <13665637+DanielNoord@users.noreply.github.com> | 2021-11-14 17:09:35 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-14 16:09:35 +0100 |
commit | 48d584babd0df99bd469aba0e4aeed3d8f97fff9 (patch) | |
tree | ba5e117a0e8551f3bcda8e3043963e75da043b6f /ChangeLog | |
parent | e5082d3f9401dbcf65b40ce6a819d2a09beccb5c (diff) | |
download | pylint-git-48d584babd0df99bd469aba0e4aeed3d8f97fff9.tar.gz |
Move ``misplaced-comparison-constant`` to optional extension (#5298)
* Move ``misplaced-comparison-constant`` to optional extension
* Update functional tests to increase coverage
Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com>
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -162,6 +162,12 @@ Release date: TBA Closes #4580 +* Moved ``misplaced-comparison-constant`` to its own extension ``comparison_placement``. + This checker was opinionated and now no longer a default. It can be reactived by adding + ``pylint.extensions.comparison_placement`` to ``load-plugins`` in your config. + + Closes #1064 + * A new ``bad-configuration-section`` checker was added that will emit for misplaced option in pylint's top level namespace for toml configuration. Top-level dictionaries or option defined in the wrong section will still silently not be taken into account, which is tracked in a |