diff options
author | Daniƫl van Noord <13665637+DanielNoord@users.noreply.github.com> | 2022-05-09 23:25:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-09 23:25:38 +0200 |
commit | afa6853b57c8c14970e460ca2651d4157751ad1d (patch) | |
tree | 4355e029b0b70008c057543658a2f79607438777 /ChangeLog | |
parent | 273a8b25620467c1e5686aa8d2a1dbb8c02c78d0 (diff) | |
download | pylint-git-afa6853b57c8c14970e460ca2651d4157751ad1d.tar.gz |
Fix disabling of ``bad-option-value`` (#6556)
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
@@ -9,6 +9,12 @@ Release date: TBA .. Put new features here and also in 'doc/whatsnew/2.14.rst' +* We have improved our recognition of inline disable and enable comments. It is + now possible to disable ``bad-option-value`` inline (as long as you disable it before + the bad option value is raised, i.e. ``disable=bad-option-value,bad-message`` not ``disable=bad-message,bad-option-value`` ) as well as certain other previously unsupported messages. + + Closes #3312 + * Added new checker ``comparison-of-constants``. Closes #6076 |