summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorSushobhit <31987769+sushobhit27@users.noreply.github.com>2018-07-31 22:53:44 +0530
committerBryce Guinta <bryce.guinta@protonmail.com>2018-07-31 11:23:44 -0600
commit676852cedc90c0ed4e7412b03b8d6b58a1f00486 (patch)
tree9dd2f347c0136d4094c29c1352ca8dd2f245cb54 /ChangeLog
parent660c3787aa1bcd83d366653e776974b23394db29 (diff)
downloadpylint-git-676852cedc90c0ed4e7412b03b8d6b58a1f00486.tar.gz
Add new check misplaced-format-function. (#2218)
* Add new check misplaced-format-function. check only w.r.t print function. For other use cases no-member check already exists. fix code block not visible for few checkers
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog5
1 files changed, 5 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 42626ad18..15dabefa0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -15,6 +15,11 @@ Release date: |TBA|
Close #2364
+ * Add a check `misplaced-format-function` which is emitted if format function is used on
+ non str object.
+
+ Close #2200
+
* `chain.from_iterable` no longer emits `dict-{}-not-iterating` when dealing with dict values and keys
* Demote the `try-except-raise` message from an error to a warning (E0705 -> W0706)