summaryrefslogtreecommitdiff
path: root/pylintrc
diff options
context:
space:
mode:
authorMarc Mueller <30130371+cdce8p@users.noreply.github.com>2021-08-16 12:39:46 +0200
committerGitHub <noreply@github.com>2021-08-16 12:39:46 +0200
commit162b4a7b744fdf4447e75173136221d5bf466102 (patch)
tree5dde5ce6fe9e619b19215db390e1df6d34017d00 /pylintrc
parentb88ff52d5a6dd80636404a0fffee788924858e4c (diff)
downloadastroid-git-162b4a7b744fdf4447e75173136221d5bf466102.tar.gz
Add pylintrc config for typing extension (#1128)
Diffstat (limited to 'pylintrc')
-rw-r--r--pylintrc9
1 files changed, 9 insertions, 0 deletions
diff --git a/pylintrc b/pylintrc
index a8308f8c..39ec56f5 100644
--- a/pylintrc
+++ b/pylintrc
@@ -401,3 +401,12 @@ int-import-graph=
# Exceptions that will emit a warning when being caught. Defaults to
# "Exception"
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