summaryrefslogtreecommitdiff
path: root/pylintrc
diff options
context:
space:
mode:
authorClaudiu Popa <pcmanticore@gmail.com>2016-05-10 16:42:28 +0300
committerClaudiu Popa <pcmanticore@gmail.com>2016-05-10 16:42:28 +0300
commita51597920bdb316019809f8e31ec196faa77a3a6 (patch)
tree266689bdcf95afa75454c8248efe163481c1010c /pylintrc
parentfa455f0051942ea785ba6f18dbf66d4cfb11fae1 (diff)
downloadpylint-git-a51597920bdb316019809f8e31ec196faa77a3a6.tar.gz
Removed the bad-builtin check
Using some of the builtins is just fine, we don't have to warn about using filter or map, since it imposes a split opinion, that can't be easily be agreed with in certain cases, leading to the disabling of the check. As such, is far more suited to remove the check.
Diffstat (limited to 'pylintrc')
-rw-r--r--pylintrc2
1 files changed, 1 insertions, 1 deletions
diff --git a/pylintrc b/pylintrc
index 6d6d4f7db..79c6d3905 100644
--- a/pylintrc
+++ b/pylintrc
@@ -59,7 +59,7 @@ disable=invalid-name,protected-access,fixme,too-many-branches,
import-error,too-many-lines,too-many-instance-attributes,
too-many-public-methods,duplicate-code,broad-except,
redefined-builtin,anomalous-backslash-in-string,
- missing-docstring,no-member,bad-builtin,
+ missing-docstring,no-member,
# Crashes, see #743.
redefined-variable-type