diff options
-rw-r--r-- | .prospector.yaml | 19 |
1 files changed, 7 insertions, 12 deletions
diff --git a/.prospector.yaml b/.prospector.yaml index 5d1f7d2..8303a5f 100644 --- a/.prospector.yaml +++ b/.prospector.yaml @@ -1,12 +1,13 @@ inherits: - strictness_veryhigh -ignore: +ignore-patterns: - (^|/)\..+ - ^docs/ # ignore tests and bin/ for the moment, their quality does not so much matter. - ^bin/ - ^blessings/tests/ + - ^tools/ test-warnings: true @@ -46,22 +47,16 @@ pylint: # no 'mark' member ignored-classes: pytest disable: - # Too many lines in module - ##- C0302 - # Used * or ** magic - ##- W0142 - # Used builtin function 'filter'. - # (For maintainability, one should prefer list comprehension.) - ##- W0141 - # Use % formatting in logging functions but pass the % parameters - ##- W1202 + # Access to a protected member _sugar of a client class + - protected-access pyroma: # checks setup.py run: true vulture: - # this tool does a good job of finding unused code. - run: true + # this tool does a good job of finding unused code, which isn't terribly + # useful from an API perspective, disable. + run: false # vim: noai:ts=4:sw=4 |