summaryrefslogtreecommitdiff
path: root/pylintrc
diff options
context:
space:
mode:
authorMarc Mueller <30130371+cdce8p@users.noreply.github.com>2022-05-13 00:39:14 +0200
committerGitHub <noreply@github.com>2022-05-13 00:39:14 +0200
commitd616f2b08b8aae4ad835103e4ff7eb21a96cc2d4 (patch)
treef14658746d2370b1fe5ec06ce7cc7810c55774c9 /pylintrc
parent58bbe0f77a3cdd4e91d4af719208e324334a869f (diff)
downloadastroid-git-d616f2b08b8aae4ad835103e4ff7eb21a96cc2d4.tar.gz
Update typing for Python 3.7 (1) (#1555)
Diffstat (limited to 'pylintrc')
-rw-r--r--pylintrc3
1 files changed, 2 insertions, 1 deletions
diff --git a/pylintrc b/pylintrc
index 90987289..40156331 100644
--- a/pylintrc
+++ b/pylintrc
@@ -265,7 +265,8 @@ mixin-class-rgx=.*Mix[Ii]n
# List of members which are set dynamically and missed by pylint inference
# system, and so shouldn't trigger E0201 when accessed. Python regular
# expressions are accepted.
-generated-members=REQUEST,acl_users,aq_parent,argparse.Namespace
+# TODO: Remove ast.Match pattern once https://github.com/PyCQA/pylint/issues/6594 is fixed
+generated-members=REQUEST,acl_users,aq_parent,argparse.Namespace,ast\.([mM]atch.*|pattern)
[VARIABLES]