diff options
author | Matthias Baumgartner <dev@igsor.net> | 2023-01-21 18:27:22 +0100 |
---|---|---|
committer | Matthias Baumgartner <dev@igsor.net> | 2023-01-21 18:27:22 +0100 |
commit | c196d2ce73d8351a18c19bcddd4b06d224e644fc (patch) | |
tree | 19c383d39304c4a08c998ebcb05d1775810034ab /.pylintrc | |
parent | 965f4dfe41afd552ed6477c75e1286c14e3580f6 (diff) | |
download | bsfs-c196d2ce73d8351a18c19bcddd4b06d224e644fc.tar.gz bsfs-c196d2ce73d8351a18c19bcddd4b06d224e644fc.tar.bz2 bsfs-c196d2ce73d8351a18c19bcddd4b06d224e644fc.zip |
Fetch in graph including results view
Diffstat (limited to '.pylintrc')
-rw-r--r-- | .pylintrc | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -76,10 +76,10 @@ max-attributes=7 max-bool-expr=5 # Maximum number of branch for function / method body. -max-branches=15 +max-branches=20 # Maximum number of locals for function / method body. -max-locals=15 +max-locals=20 # Maximum number of parents for a class (see R0901). max-parents=7 @@ -91,7 +91,7 @@ max-public-methods=20 max-returns=15 # Maximum number of statements in function / method body. -max-statements=50 +max-statements=100 # Minimum number of public methods for a class (see R0903). min-public-methods=1 |