summaryrefslogtreecommitdiff
path: root/pylintrc
diff options
context:
space:
mode:
authorNick Drozd <nicholasdrozd@gmail.com>2018-01-02 19:57:28 -0600
committerClaudiu Popa <pcmanticore@gmail.com>2018-01-04 08:11:09 +0100
commitc6f92c56a46ba3fd331be7011e729b927f06e92f (patch)
tree88c327eb5c43b360649b4b8b36c46039d6c958d9 /pylintrc
parent5f22e3e0444c4c7d8db3fbaa46f289a4851f8222 (diff)
downloadpylint-git-c6f92c56a46ba3fd331be7011e729b927f06e92f.tar.gz
Set max-attributes to 11
The greatest number of instance attributes is 21. The next greatest is 11, which is more reasonable.
Diffstat (limited to 'pylintrc')
-rw-r--r--pylintrc3
1 files changed, 1 insertions, 2 deletions
diff --git a/pylintrc b/pylintrc
index d5d31646f..22f92e38a 100644
--- a/pylintrc
+++ b/pylintrc
@@ -65,7 +65,6 @@ disable=
too-many-arguments,
too-many-statements,
too-few-public-methods,
- too-many-instance-attributes,
[REPORTS]
@@ -327,7 +326,7 @@ max-statements=50
max-parents=7
# Maximum number of attributes for a class (see R0902).
-max-attributes=7
+max-attributes=11
# Minimum number of public methods for a class (see R0903).
min-public-methods=2