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