summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarianna Polatoglou <mpolatoglou@bloomberg.net>2018-05-14 11:26:55 -0400
committerClaudiu Popa <pcmanticore@gmail.com>2018-05-14 11:58:16 -0400
commit75a68fb5be105e138ca9527b0fc5c7e02b1a15e5 (patch)
tree460cbcfa37230b74d40e71071c00006b7e8662b6
parentf1f265cfa21b9a2be6ec0e90f9145cc4a88fc478 (diff)
downloadpylint-git-75a68fb5be105e138ca9527b0fc5c7e02b1a15e5.tar.gz
Update ChangeLog, whatsnew and CONTRIBUTORS
-rw-r--r--CONTRIBUTORS.txt2
-rw-r--r--ChangeLog4
-rw-r--r--doc/whatsnew/2.0.rst2
3 files changed, 8 insertions, 0 deletions
diff --git a/CONTRIBUTORS.txt b/CONTRIBUTORS.txt
index fde8f44db..5405043ae 100644
--- a/CONTRIBUTORS.txt
+++ b/CONTRIBUTORS.txt
@@ -170,3 +170,5 @@ Order doesn't matter (not that much, at least ;)
* Thomas Snowden: fix missing-docstring for inner functions
* Mitchell Young: minor adjustment to docparams
+
+* Marianna Polatoglou: minor contribution for wildcard import check
diff --git a/ChangeLog b/ChangeLog
index 4b1716c06..9d7658ac4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -4,6 +4,10 @@ Pylint's ChangeLog
What's New in Pylint 2.0?
=========================
+ * Skip wildcard import check for `__init__.py`.
+
+ Close #2026
+
* The Python 3 porting mode can now run with Python 3 as well.
* `too-few-public-methods` is not emitted for dataclasses.
diff --git a/doc/whatsnew/2.0.rst b/doc/whatsnew/2.0.rst
index 573f1ce05..921350d2b 100644
--- a/doc/whatsnew/2.0.rst
+++ b/doc/whatsnew/2.0.rst
@@ -150,3 +150,5 @@ Other Changes
* docparams allows abstract methods to document returns documentation even
if the default implementation does not return something.
They also no longer need to document raising a NotImplementedError.
+
+* Skip wildcard import check for `__init__.py`.