summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorDaniƫl van Noord <13665637+DanielNoord@users.noreply.github.com>2022-05-09 23:25:38 +0200
committerGitHub <noreply@github.com>2022-05-09 23:25:38 +0200
commitafa6853b57c8c14970e460ca2651d4157751ad1d (patch)
tree4355e029b0b70008c057543658a2f79607438777 /ChangeLog
parent273a8b25620467c1e5686aa8d2a1dbb8c02c78d0 (diff)
downloadpylint-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--ChangeLog6
1 files changed, 6 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index f8db6f0e9..087a5fc9d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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