diff --git a/.prospector.yml b/.prospector.yml new file mode 100644 index 000000000..cafb354a9 --- /dev/null +++ b/.prospector.yml @@ -0,0 +1,34 @@ +# prospector configuration file + +--- +output-format: grouped +strictness: veryhigh +doc-warnings: true +test-warnings: true +member-warnings: true + +frosted: + run: false + +pyroma: + run: false + +mypy: + run: false + +pydocroma: + run: true + +pep8: + run: true + disable: [ + E501, # Line-length, already controlled by pylint + ] + +pep257: + run: true + # see http://pep257.readthedocs.io/en/latest/error_codes.html + disable: [ + D203, # 1 blank line required before class docstring + # conflicts with D0211, No blank lines allowed before class docstring + ]