summaryrefslogtreecommitdiff
path: root/pylintrc
diff options
context:
space:
mode:
authorNick Drozd <nicholasdrozd@gmail.com>2018-01-02 18:47:34 -0600
committerClaudiu Popa <pcmanticore@gmail.com>2018-01-04 08:11:09 +0100
commit170fa13e22039797faf51957d3e2c5d07a3ed0aa (patch)
tree1517341c3e1686aededbb71a1d847475d7ceda48 /pylintrc
parent58fe81cf71e43542f2205dc2f0564358bb4ab971 (diff)
downloadpylint-git-170fa13e22039797faf51957d3e2c5d07a3ed0aa.tar.gz
Organize disabled pylint messages
Design messages are organized by length, others alphabetically
Diffstat (limited to 'pylintrc')
-rw-r--r--pylintrc27
1 files changed, 20 insertions, 7 deletions
diff --git a/pylintrc b/pylintrc
index 7a4da9a35..9b3f48b81 100644
--- a/pylintrc
+++ b/pylintrc
@@ -52,13 +52,26 @@ confidence=
# no Warning level messages displayed, use"--disable=all --enable=classes
# --disable=W"
-disable=invalid-name,protected-access,fixme,too-many-branches,
- attribute-defined-outside-init,too-many-locals,
- too-many-arguments,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,
- redefined-builtin,missing-docstring,no-member,
+disable=
+ attribute-defined-outside-init,
+ broad-except,
+ duplicate-code,
+ fixme,
+ import-error,
+ invalid-name,
+ missing-docstring,
+ no-member,
+ redefined-builtin,
+ protected-access,
+ too-many-lines,
+ too-many-locals,
+ too-many-branches,
+ too-many-arguments,
+ too-many-statements,
+ too-few-public-methods,
+ too-many-public-methods,
+ too-many-return-statements,
+ too-many-instance-attributes,
[REPORTS]