summaryrefslogtreecommitdiff
path: root/pylintrc
diff options
context:
space:
mode:
authorMarc Mueller <30130371+cdce8p@users.noreply.github.com>2021-11-28 14:09:20 +0100
committerGitHub <noreply@github.com>2021-11-28 14:09:20 +0100
commit06880e25a472fd53232d0db481a73ac6315126a9 (patch)
tree4a9b385ea6102a782dbaef5fbacdd94980aa3242 /pylintrc
parent813aab5069f55eebf501ea000a46fc39a09956a8 (diff)
downloadastroid-git-06880e25a472fd53232d0db481a73ac6315126a9.tar.gz
Update pylintrc (#1278)
Diffstat (limited to 'pylintrc')
-rw-r--r--pylintrc8
1 files changed, 4 insertions, 4 deletions
diff --git a/pylintrc b/pylintrc
index 2644057c..943d535f 100644
--- a/pylintrc
+++ b/pylintrc
@@ -42,6 +42,9 @@ unsafe-load-any-extension=no
# run arbitrary code
extension-pkg-whitelist=
+# Minimum supported python version
+py-version = 3.6.2
+
[REPORTS]
@@ -302,7 +305,7 @@ ignored-modules=typed_ast.ast3
ignored-classes=SQLObject
# Regex pattern to define which classes are considered mixins.
-mixin-class-rgx=.*Mix[i|I]n
+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
@@ -406,8 +409,5 @@ overgeneral-exceptions=Exception
[TYPING]
-# Minimum supported python version (used for typing only!)
-py-version = 3.6
-
# Annotations are used exclusively for type checking
runtime-typing = no