diff options
author | Claudiu Popa <pcmanticore@gmail.com> | 2016-05-10 16:42:28 +0300 |
---|---|---|
committer | Claudiu Popa <pcmanticore@gmail.com> | 2016-05-10 16:42:28 +0300 |
commit | a51597920bdb316019809f8e31ec196faa77a3a6 (patch) | |
tree | 266689bdcf95afa75454c8248efe163481c1010c /pylintrc | |
parent | fa455f0051942ea785ba6f18dbf66d4cfb11fae1 (diff) | |
download | pylint-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-- | pylintrc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |