summaryrefslogtreecommitdiff
path: root/doc/whatsnew/2.0.rst
diff options
context:
space:
mode:
authorSushobhit <31987769+sushobhit27@users.noreply.github.com>2018-05-19 14:19:12 +0530
committerClaudiu Popa <pcmanticore@gmail.com>2018-05-19 10:49:12 +0200
commit0120e4b671bcb8e81500de787a284b38af282bac (patch)
tree20ecfbe5b28db1e1ffaccf2b15146fe2e8b08a44 /doc/whatsnew/2.0.rst
parentc21c731451e09c68f29d670bd286b23638269116 (diff)
downloadpylint-git-0120e4b671bcb8e81500de787a284b38af282bac.tar.gz
Take annotations in account for missing-type-doc and missing-return-doc
Close #2083
Diffstat (limited to 'doc/whatsnew/2.0.rst')
-rw-r--r--doc/whatsnew/2.0.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/whatsnew/2.0.rst b/doc/whatsnew/2.0.rst
index 4e8db27b0..1f34c1d4b 100644
--- a/doc/whatsnew/2.0.rst
+++ b/doc/whatsnew/2.0.rst
@@ -141,6 +141,8 @@ New checkers
Other Changes
=============
+* Don't warn for ``missing-type-doc`` and/or ``missing-return-type-doc``, if type annotations
+ exist on the function signature for a parameter and/or return type.
* Fix a false positive ``inconsistent-return-statements`` message when if
statement is inside try/except.