summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorPaul Renvoisé <renvoisepaul@gmail.com>2019-03-15 22:17:21 +0100
committerClaudiu Popa <pcmanticore@gmail.com>2019-03-27 14:47:11 +0100
commit3228bc4184c43c2d96f9360b4adfc39c151a00df (patch)
treeffc49ba4b699e065bd6074548009ab36d408c145 /ChangeLog
parent6989448dc461daafc2605623546d8d0f5fe4633f (diff)
downloadpylint-git-3228bc4184c43c2d96f9360b4adfc39c151a00df.tar.gz
Add preferred-modules option and check
This allow users to specify a set of preferred modules that should be used instead of other modules.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog5
1 files changed, 5 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 01941440c..78e1c0e8f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -25,6 +25,11 @@ Release date: TBA
Close #2684
+* Add ``preferred-module`` checker that notify if an import has a replacement module that should be used.
+
+ This check is emitted when ``pylint`` finds an imported module that has a
+ preferred replacement listed in ``preferred-modules``.
+
* ``assigning-non-slot`` not emitted for classes with unknown base classes.
Close #2807