diff options
author | Simon Warta <[email protected]> | 2017-03-08 00:24:59 +0100 |
---|---|---|
committer | Simon Warta <[email protected]> | 2017-03-08 23:33:34 +0100 |
commit | e55c523989204c672de8e9a55fd422eb2576a4f6 (patch) | |
tree | 1891253f65117551eb2494ba3949e6209ab98111 /.pylintrc | |
parent | 159b5b36d43f82c6a47eb0e752d9edd22ac0f08c (diff) |
pylint: make some limits less strict
Diffstat (limited to '.pylintrc')
-rw-r--r-- | .pylintrc | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -339,7 +339,7 @@ exclude-protected=_asdict,_fields,_replace,_source,_make [DESIGN] # Maximum number of arguments for function / method -max-args=5 +max-args=7 # Argument names that match this expression will be ignored. Default to name # with leading underscore @@ -361,10 +361,10 @@ max-statements=50 max-parents=7 # Maximum number of attributes for a class (see R0902). -max-attributes=7 +max-attributes=15 # Minimum number of public methods for a class (see R0903). -min-public-methods=2 +min-public-methods=0 # Maximum number of public methods for a class (see R0904). max-public-methods=20 |