summaryrefslogtreecommitdiff
path: root/pylintrc
diff options
context:
space:
mode:
authorMarc Mueller <30130371+cdce8p@users.noreply.github.com>2021-04-01 14:30:10 +0200
committerPierre Sassoulas <pierre.sassoulas@gmail.com>2021-04-03 09:47:03 +0200
commitdde28c0eea6cb793a6dee80d83e440b35ba3bcd1 (patch)
treecaa63e8fbf4948a84f841b8611a6efe8149a48bf /pylintrc
parent121530dd82bd89dca9cbc44193618177140b86d7 (diff)
downloadpylint-git-dde28c0eea6cb793a6dee80d83e440b35ba3bcd1.tar.gz
Fix pylintrc file
Diffstat (limited to 'pylintrc')
-rw-r--r--pylintrc12
1 files changed, 8 insertions, 4 deletions
diff --git a/pylintrc b/pylintrc
index 8ccea5ae0..ce4bb8318 100644
--- a/pylintrc
+++ b/pylintrc
@@ -17,7 +17,8 @@ persistent=yes
# List of plugins (as comma separated values of python modules names) to load,
# usually to register additional checkers.
load-plugins=
- pylint.extensions.check_elif
+ pylint.extensions.check_elif,
+ pylint.extensions.bad_builtin
# Use multiple processes to speed up Pylint.
jobs=1
@@ -171,9 +172,6 @@ expected-line-ending-format=
[BASIC]
-# List of builtins function names that should not be used, separated by a comma
-bad-functions=map,filter,input
-
# Good variable names which should always be accepted, separated by a comma
good-names=i,j,k,ex,Run,_
@@ -374,3 +372,9 @@ int-import-graph=
# Exceptions that will emit a warning when being caught. Defaults to
# "Exception"
overgeneral-exceptions=Exception
+
+
+[pylint.DEPRECATED_BUILTINS]
+
+# List of builtins function names that should not be used, separated by a comma
+bad-functions=map,filter,input