summaryrefslogtreecommitdiff
path: root/pylint/checkers/imports.py
diff options
context:
space:
mode:
authorDaniƫl van Noord <13665637+DanielNoord@users.noreply.github.com>2022-04-13 12:44:32 +0200
committerGitHub <noreply@github.com>2022-04-13 12:44:32 +0200
commit22ae03c768920cacd64120b8efdda045e5424c74 (patch)
treef56724f5f87263369a4c2fe099f405aa15b4839a /pylint/checkers/imports.py
parente123739e8c33bf4b7275b2fd7e8ee1593304a3cc (diff)
downloadpylint-git-22ae03c768920cacd64120b8efdda045e5424c74.tar.gz
Move general options to ``PyLinter`` from individual checkers (#6291)
Diffstat (limited to 'pylint/checkers/imports.py')
-rw-r--r--pylint/checkers/imports.py13
1 files changed, 0 insertions, 13 deletions
diff --git a/pylint/checkers/imports.py b/pylint/checkers/imports.py
index 567f675b4..f1d5d6dd5 100644
--- a/pylint/checkers/imports.py
+++ b/pylint/checkers/imports.py
@@ -360,19 +360,6 @@ class ImportsChecker(DeprecatedMixin, BaseChecker):
},
),
(
- "analyse-fallback-blocks",
- {
- "default": False,
- "type": "yn",
- "metavar": "<y or n>",
- "help": "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.",
- },
- ),
- (
"allow-wildcard-with-all",
{
"default": False,