diff options
author | Nick Drozd <nicholasdrozd@gmail.com> | 2018-01-02 19:57:28 -0600 |
---|---|---|
committer | Claudiu Popa <pcmanticore@gmail.com> | 2018-01-04 08:11:09 +0100 |
commit | c6f92c56a46ba3fd331be7011e729b927f06e92f (patch) | |
tree | 88c327eb5c43b360649b4b8b36c46039d6c958d9 /pylintrc | |
parent | 5f22e3e0444c4c7d8db3fbaa46f289a4851f8222 (diff) | |
download | pylint-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-- | pylintrc | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -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 |