recommonmark/prospector.yml
2018-04-27 09:33:14 -07:00

31 lines
356 B
YAML

strictness: medium
test-warnings: false
doc-warnings: true
ignore-paths:
- docs
pep8:
full: true
options:
max-line-length: 100
pylint:
options:
max-line-length: 100
docstring-min-length: 20
disable:
- interface-not-implemented
mccabe:
run: false
pep257:
run: true
disable:
- D213
- D211
- D107
- D104