summaryrefslogtreecommitdiff
path: root/pylintrc
diff options
context:
space:
mode:
authorDaniƫl van Noord <13665637+DanielNoord@users.noreply.github.com>2022-03-29 14:44:27 +0200
committerGitHub <noreply@github.com>2022-03-29 14:44:27 +0200
commit0bc45e9037416203bd11f83b84a906fcec1a47f0 (patch)
treeaed06a43f53926fdb2b4045b381e31df9f2247ac /pylintrc
parent700752a03604e4fe1b73e5f4200649c157e6eaaa (diff)
downloadpylint-git-0bc45e9037416203bd11f83b84a906fcec1a47f0.tar.gz
Create an `Argument` class and allow convertion of optdict into them (#5584)
* Use config initialization of ``_ArgumentsManager`` * Allow ``BaseChecker`` to register on a ``_ArgumentsManager`` * Use the ``argparse`` config handler in ``logging.py`` and add tests
Diffstat (limited to 'pylintrc')
-rw-r--r--pylintrc2
1 files changed, 1 insertions, 1 deletions
diff --git a/pylintrc b/pylintrc
index 1c28d5484..7dd03b686 100644
--- a/pylintrc
+++ b/pylintrc
@@ -393,7 +393,7 @@ ignored-classes=SQLObject, optparse.Values, thread._local, _thread._local
# List of members which are set dynamically and missed by pylint inference
# system, and so shouldn't trigger E1101 when accessed. Python regular
# expressions are accepted.
-generated-members=REQUEST,acl_users,aq_parent
+generated-members=REQUEST,acl_users,aq_parent,argparse.Namespace
# List of decorators that create context managers from functions, such as
# contextlib.contextmanager.