summaryrefslogtreecommitdiff
path: root/pylintrc
diff options
context:
space:
mode:
authorMarc Mueller <30130371+cdce8p@users.noreply.github.com>2023-01-28 18:08:28 +0100
committerGitHub <noreply@github.com>2023-01-28 18:08:28 +0100
commitacb28d8fcefb06179d9e6528ba14dd099e12ecfa (patch)
tree1f8f68dd9a3f00c375ec743010980452e821cbd8 /pylintrc
parent2cfc8f5d38a2e0ea46be7b3908729cca8c8fb8c4 (diff)
downloadpylint-git-acb28d8fcefb06179d9e6528ba14dd099e12ecfa.tar.gz
Add `--allow-reexport-from-package` option (#8124)
Diffstat (limited to 'pylintrc')
-rw-r--r--pylintrc3
1 files changed, 3 insertions, 0 deletions
diff --git a/pylintrc b/pylintrc
index 1328db768..26fde0c79 100644
--- a/pylintrc
+++ b/pylintrc
@@ -477,6 +477,9 @@ allow-any-import-level=
# Allow wildcard imports from modules that define __all__.
allow-wildcard-with-all=no
+# Allow explicit reexports by alias from a package __init__.
+allow-reexport-from-package=no
+
# Analyse import fallback blocks. This can be used to support both Python 2 and
# 3 compatible code, which means that the block might have code that exists
# only in one or another interpreter, leading to false positives when analysed.