File tree Expand file tree Collapse file tree 2 files changed +9
-10
lines changed Expand file tree Collapse file tree 2 files changed +9
-10
lines changed Original file line number Diff line number Diff line change @@ -2,16 +2,15 @@ The compare to empty string checker (``pylint.extensions.emptystring``) and the
2
2
zero checker (``pylint.extensions.compare-to-zero``) have been removed and their checks are
3
3
now part of the implicit booleaness checker:
4
4
5
- ``compare-to-zero`` was renamed ``use-implicit-booleaness-not-comparison-to-zero`` and
6
- ``compare-to-empty-string`` was renamed ``use-implicit-booleaness-not-comparison-to-string``
7
- and they now need to be enabled explicitly.
5
+ - ``compare-to-zero`` was renamed ``use-implicit-booleaness-not-comparison-to-zero`` and
6
+ ``compare-to-empty-string`` was renamed ``use-implicit-booleaness-not-comparison-to-string``
7
+ and they now need to be enabled explicitly.
8
8
9
- The ``pylint.extensions.emptystring`` and ``pylint.extensions.compare-to-zero`` extensions
10
- no longer exist and need to be removed from the ``load-plugins`` option.
9
+ - The ``pylint.extensions.emptystring`` and ``pylint.extensions.compare-to-zero`` extensions
10
+ no longer exist and need to be removed from the ``load-plugins`` option.
11
11
12
- Messages related to implicit booleaness were made more explicit and actionable.
13
-
14
- This permits to make their likeness explicit and will provide better performance as they share most of their
15
- conditions to be raised.
12
+ - Messages related to implicit booleaness were made more explicit and actionable.
13
+ This permits to make their likeness explicit and will provide better performance as they
14
+ share most of their conditions to be raised.
16
15
17
16
Closes #6871
Original file line number Diff line number Diff line change 1
- The ' overgeneral-exceptions' option now only takes fully qualified names
1
+ The `` overgeneral-exceptions`` option now only takes fully qualified names
2
2
into account (``builtins.Exception`` not ``Exception``). If you overrode
3
3
this option, you need to use the fully qualified name now.
4
4
You can’t perform that action at this time.
0 commit comments