summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2020-05-03 08:43:27 +0200
committerPierre Sassoulas <pierre.sassoulas@gmail.com>2020-05-03 11:00:18 +0200
commit67adbe09fe6dbe717261be837a6d276d2fb6bf7f (patch)
tree4ce895a9c6dd7b2622b1adde2bb82e5266c482c1
parentd48d01a70381078afaf83b5f02cd08089f8699cc (diff)
downloadpylint-git-67adbe09fe6dbe717261be837a6d276d2fb6bf7f.tar.gz
Update changelog for mixed-indentation removal
Python3 raises: TabError: inconsistent use of tabs and spaces in indentation
-rw-r--r--ChangeLog8
-rw-r--r--doc/whatsnew/2.6.rst2
2 files changed, 8 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index d9a20be99..2e47d45fe 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -8,11 +8,15 @@ Release date: TBA
* bad-continuation and bad-whitespace have been removed, black or another formatter can help you with this better than Pylint
-Close #246, #289, #638, #747, #1148, #1179, #1943, #2041, #2301, #2304, #2944, #3565
+ Close #246, #289, #638, #747, #1148, #1179, #1943, #2041, #2301, #2304, #2944, #3565
* 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
-Close #1368
+ Close #1368
+
+* mixed-indentation has been removed, it is no longer useful since TabError is included directly in python3
+
+ Close #2984 #3573
What's New in Pylint 2.5.1?
===========================
diff --git a/doc/whatsnew/2.6.rst b/doc/whatsnew/2.6.rst
index 10f6f455f..92a72e3c0 100644
--- a/doc/whatsnew/2.6.rst
+++ b/doc/whatsnew/2.6.rst
@@ -19,3 +19,5 @@ 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