From 32d4a51fefa1dc780e69108a8f34e4c69231b411 Mon Sep 17 00:00:00 2001 From: Marc Mueller <30130371+cdce8p@users.noreply.github.com> Date: Sat, 14 Aug 2021 11:06:54 +0200 Subject: [PATCH] Add pylintrc config for typing extension --- pylintrc | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/pylintrc b/pylintrc index a603e61a7d..32dda6ca88 100644 --- a/pylintrc +++ b/pylintrc @@ -381,6 +381,15 @@ int-import-graph= 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 + + [pylint.DEPRECATED_BUILTINS] # List of builtins function names that should not be used, separated by a comma