summaryrefslogtreecommitdiff
path: root/pylintrc
diff options
context:
space:
mode:
authorMarc Mueller <30130371+cdce8p@users.noreply.github.com>2021-08-30 08:33:54 +0200
committerGitHub <noreply@github.com>2021-08-30 08:33:54 +0200
commita754d8dd7f2eab2c6ee7e443948084f476fef296 (patch)
tree80848b4020cc146c206e2beb466e104aa9fffb34 /pylintrc
parentb959ce54dfe5749e7da0fe79fbe205d64255b966 (diff)
downloadpylint-git-a754d8dd7f2eab2c6ee7e443948084f476fef296.tar.gz
Add `consider-using-assignment-expr` to `CodeStyleChecker` (#4876)
* Add global py-version config * Add typing-extensions as requirement for Python < 3.10 * Add consider-using-assignment-expr to CodeStyleChecker * Default to max-line-length Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com>
Diffstat (limited to 'pylintrc')
-rw-r--r--pylintrc6
1 files changed, 3 insertions, 3 deletions
diff --git a/pylintrc b/pylintrc
index 32dda6ca8..6acebfbfb 100644
--- a/pylintrc
+++ b/pylintrc
@@ -36,6 +36,9 @@ unsafe-load-any-extension=no
# run arbitrary code
extension-pkg-allow-list=
+# Minimum supported python version
+py-version = 3.6
+
[MESSAGES CONTROL]
@@ -383,9 +386,6 @@ 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