summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorDaniƫl van Noord <13665637+DanielNoord@users.noreply.github.com>2021-09-17 14:04:45 +0200
committerPierre Sassoulas <pierre.sassoulas@gmail.com>2021-09-17 14:14:05 +0200
commitc17370db310b32652486f8e0030d540973a13536 (patch)
treeea90c623516fc41d9408355ed0f784189c6c83a7 /doc
parent77e5bd78438ba26bc4dd4837d3535bbc227b8e5c (diff)
downloadpylint-git-c17370db310b32652486f8e0030d540973a13536.tar.gz
Add ``flynt`` to 2.11 changelog
Diffstat (limited to 'doc')
-rw-r--r--doc/whatsnew/2.11.rst3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/whatsnew/2.11.rst b/doc/whatsnew/2.11.rst
index 312ec5de3..647f326cd 100644
--- a/doc/whatsnew/2.11.rst
+++ b/doc/whatsnew/2.11.rst
@@ -10,7 +10,7 @@ Summary -- Release highlights
In 2.11, we added a new default checker to advise using f-string as it's
the most efficient way of formatting strings right now. You can use
-`pyupgrade`_ to migrate your old ``%`` and ``format()`` automatically.
+`pyupgrade`_ or `flynt`_ to migrate your old ``%`` and ``format()`` automatically.
We added a new extension ``SetMembershipChecker`` that will advise the
use of set for membership test, as it's more performant than lists or tuples.
@@ -32,6 +32,7 @@ to provide knowledge or use case :)
.. _possible-forgotten-f-prefix: https://github.com/PyCQA/pylint/pull/4787
.. _pyupgrade: https://github.com/asottile/pyupgrade
+.. _flynt: https://github.com/ikamensh/flynt
New checkers