Revision 604f6fb18c43ed9ea0c91b5446a1de0a3790e2c4 authored by Bouwe Andela on 26 October 2023, 16:14:44 UTC, committed by GitHub on 26 October 2023, 16:14:44 UTC
1 parent 3e7ff21
Raw File
.prospector.yml
# prospector configuration file

---

output-format: grouped

strictness: veryhigh
doc-warnings: true
test-warnings: true
member-warnings: false

pyroma:
    run: true

pep8:
    full: true

pep257:
    # disable rules that are allowed by the numpy convention
    # see https://github.com/PyCQA/pydocstyle/blob/master/src/pydocstyle/violations.py
    # and http://pydocstyle.readthedocs.io/en/latest/error_codes.html
    disable: ['D107', 'D203', 'D212', 'D213', 'D402', 'D413', 'D416']
back to top