summaryrefslogtreecommitdiff
path: root/pylintrc
diff options
context:
space:
mode:
authorClaudiu Popa <cpopa@cloudbasesolutions.com>2015-05-07 23:16:06 +0300
committerClaudiu Popa <cpopa@cloudbasesolutions.com>2015-05-07 23:16:06 +0300
commita0cf8df16be277b80b66d33747b342de6f82fa44 (patch)
tree9608805bfbc68b87ae6c5ec109b48851d2a8f163 /pylintrc
parentad4e9586711a95f6247ed6f84bbef73da014550a (diff)
downloadpylint-a0cf8df16be277b80b66d33747b342de6f82fa44.tar.gz
Disable in pylintrc only the actual problems from the codebase.
Diffstat (limited to 'pylintrc')
-rw-r--r--pylintrc11
1 files changed, 10 insertions, 1 deletions
diff --git a/pylintrc b/pylintrc
index 3920d41..156a9f7 100644
--- a/pylintrc
+++ b/pylintrc
@@ -60,7 +60,16 @@ confidence=
# --enable=similarities". If you want to run only the classes checker, but have
# no Warning level messages displayed, use"--disable=all --enable=classes
# --disable=W"
-#disable=C0103,C0111,C0302,C1001,E0239,E1101,R0201,R0401,R0801,R0901,R0902,R0903,R0904,R0911,R0912,R0913,R0914,R0915,R0923,W0199,W0201,W0211,W0212,W0221,W0222,W0223,W0231,W0232,W0233,W0234,W0301,W0311,W0312,W0332,W0401,W0402,W0403,W0404,W0406,W0410,W0511,W0512,W0601,W0602,W0603,W0604,W0613,W0614,W0621,W0622,W0623,W0631,W0632,W0633,W0640,W0702,W0703,W0704,W0710,W0711,W1001,W1111,W1201,W1202,W1300,W1301,W1302,W1303,W1304,W1305,W1306,W1307,W1401,W1402,W1501,W1502,W1503,W1601,W1602,W1603,W1604,W1605W1606,W1607,W1608,W1609,W1610,W1611,W1612,W1613,W1614,W1615,W1616,W1617,W1618,W1619,W1620,W1621,W1622,W1623,W1624,W1625,W1626,W1627,W1628,W1629,W1630,W1632,W1633,W1634,W1635,W1636,W1637,W1638,W1639
+
+disable=invalid-name,protected-access,fixme,too-many-branches,
+ attribute-defined-outside-init,too-many-locals,
+ too-many-arguments,abstract-method,too-many-statements,
+ too-many-return-statements,too-few-public-methods,
+ import-error,too-many-lines,too-many-instance-attributes,
+ too-many-public-methods,duplicate-code,broad-except,
+ unbalanced-tuple-unpacking,redefined-builtin,anomalous-backslash-in-string,
+ missing-docstring,no-member
+
[REPORTS]