blob: bbb2a7b20b434ef178824e9b22f65d2e43061e6d [file] [log] [blame]
***************************
What's New in Pylint 2.11
***************************
:Release: 2.11
:Date: TBA
Summary -- Release highlights
=============================
New checkers
============
* Added ``consider-using-f-string``: Emitted when .format() or '%' is being used to format a string.
Closes #3592
Extensions
==========
* ``CodeStyleChecker``
* Added ``consider-using-assignment-expr``: Emitted when an assignment is directly followed by an if statement
and both can be combined by using an assignment expression ``:=``. Requires Python 3.8
Closes #4862
Other Changes
=============
* Added ``py-version`` config key (if ``[MASTER]`` section). Used for version dependant checks.
Will default to whatever Python version pylint is executed with.