third_party.pylibs.pylint.src/doc/whatsnew/2.6.rst
Pierre Sassoulas 67adbe09fe Update changelog for mixed-indentation removal
Python3 raises:
TabError: inconsistent use of tabs and spaces in indentation
2020-05-03 11:00:18 +02:00

24 lines
620 B
ReStructuredText
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

**************************
What's New in Pylint 2.6
**************************
:Release: 2.6
:Date: TBA
Summary -- Release highlights
=============================
New checkers
============
Other Changes
=============
* `bad-continuation` and `bad-whitespace` have been removed. `black` or another formatter can help you with this better than Pylint
* The `no-space-check` option has been removed, it's no longer possible to consider empty line like a `trailing-whitespace` by using clever options.
* `mixed-indentation` has been removed, it is no longer useful since TabError is included directly in python3