summaryrefslogtreecommitdiff
path: root/pylintrc
diff options
context:
space:
mode:
authorClaudiu Popa <cpopa@cloudbasesolutions.com>2015-06-26 22:50:55 +0300
committerClaudiu Popa <cpopa@cloudbasesolutions.com>2015-06-26 22:50:55 +0300
commite067d1526985ded7f64b12e0c4c277f700d0ca43 (patch)
tree2f4b5aeb2b78b54b422f1f7d10183897f379b9aa /pylintrc
parentc3769fe82efadc93e691fda1235533734c3080a2 (diff)
downloadastroid-git-e067d1526985ded7f64b12e0c4c277f700d0ca43.tar.gz
Add helpers.is_supertype and helpers.is_subtype, two functions for checking if an object is a super/sub type of another.
Diffstat (limited to 'pylintrc')
-rw-r--r--pylintrc2
1 files changed, 1 insertions, 1 deletions
diff --git a/pylintrc b/pylintrc
index ac9c8353..f3ad435c 100644
--- a/pylintrc
+++ b/pylintrc
@@ -98,7 +98,7 @@ disable=invalid-name,protected-access,no-self-use,unused-argument,
too-many-return-statements,redefined-outer-name,undefined-variable,
too-many-locals,method-hidden,duplicate-code,attribute-defined-outside-init,
fixme,missing-docstring,too-many-lines,too-many-statements,undefined-loop-variable,
- unpacking-non-sequence,import-error,no-name-in-module
+ unpacking-non-sequence,import-error,no-name-in-module,bad-builtin
[BASIC]