updating prospector.yaml

This commit is contained in:
2021-10-16 05:25:07 +01:00
parent 517fe974c6
commit 1300974a04

View File

@@ -11,10 +11,11 @@ pylint:
disable:
# disables TODO warnings
- fixme
# !doc missing docstrings
# !doc docstrings
- missing-module-docstring
- missing-class-docstring
- missing-function-docstring
# ! doc end of docstrings
# disables warnings about abstract methods not overridden
- abstract-method
# used when an ancestor class method has an __init__ method which is not called by a derived class.
@@ -37,6 +38,7 @@ pylint:
max-public-methods: 25
max-module-lines: 1000
max-line-length: 88
max-args: 8
mccabe:
run: true
@@ -82,6 +84,7 @@ pep257:
- D213
# First word of the docstring should not be This
- D404
# !doc end of docstrings
# Section name should end with a newline
- D406
# Missing dashed underline after section