summaryrefslogtreecommitdiff
path: root/pylintrc
diff options
context:
space:
mode:
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