summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorDudeNr33 <3929834+DudeNr33@users.noreply.github.com>2021-04-23 20:32:40 +0200
committerGitHub <noreply@github.com>2021-04-23 20:32:40 +0200
commitcdeae9cd36f08b1c6289ed9eaaa7ada4be04c538 (patch)
treef07369e608bf6e12b220bb20fc8907b56d102de9 /ChangeLog
parent922f38969c326826344e2d25af499cf8c5f80d8c (diff)
downloadpylint-git-cdeae9cd36f08b1c6289ed9eaaa7ada4be04c538.tar.gz
Enhancement 1070 file output (#4339)
* Add ``--output-file`` option
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog6
1 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 200656717..30c91a51a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -22,6 +22,10 @@ Release date: Undefined
* Add new extension ``ConfusingConsecutiveElifChecker``. This optional checker emits a refactoring message (R5601 ``confusing-consecutive-elif``)
if if/elif statements with different indentation levels follow directly one after the other.
+* New option ``--output=<file>`` to output result to a file rather than printing to stdout.
+
+ Closes #1070
+
* Use a prescriptive message for ``unidiomatic-typecheck``
Closes #3891
@@ -67,7 +71,7 @@ Release date: Undefined
Closes #4019
-* Run will not fail if score exactly equals ``config.fail_under`.
+* Run will not fail if score exactly equals ``config.fail_under``.
* Functions that never returns may declare ``NoReturn`` as type hints, so that
``inconsistent-return-statements`` is not emitted.