From acb28d8fcefb06179d9e6528ba14dd099e12ecfa Mon Sep 17 00:00:00 2001 From: Marc Mueller <30130371+cdce8p@users.noreply.github.com> Date: Sat, 28 Jan 2023 18:08:28 +0100 Subject: Add `--allow-reexport-from-package` option (#8124) --- pylintrc | 3 +++ 1 file changed, 3 insertions(+) (limited to 'pylintrc') 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. -- cgit v1.2.1