adding latest

This commit is contained in:
2021-11-09 23:16:10 +00:00
parent c62d395df2
commit 6efec7fbc4
3 changed files with 81 additions and 90 deletions

View File

@@ -25,7 +25,7 @@ pylint:
# Used when an expression that is not a function call is assigned to nothing. Probably something else was intended.
# - expression-not-assigned
# Used when a line is longer than a given number of characters.
- line-too-long
# - line-too-long
enable:
options:
max-locals: 15
@@ -37,7 +37,7 @@ pylint:
min-public-methods: 0
max-public-methods: 25
max-module-lines: 1000
max-line-length: 88
max-line-length: 99
max-args: 8
mccabe:
@@ -49,7 +49,7 @@ mccabe:
pep8:
run: true
options:
max-line-length: 88
max-line-length: 99
single-line-if-stmt: n
disable:
# line too long
@@ -66,28 +66,28 @@ pyroma:
pep257:
disable:
# !doc docstrings
# Missing docstring in public package
- D104
# Missing docstring in __init__
- D107
# Missing docstring in public module
- D100
# Missing docstring in public class
- D101
# Missing docstring in public method
- D102
# Missing docstring in public function
- D103
# Missing docstring in magic method
- D105
# One-line docstring should fit on one line with quotes
- D200
# No blank lines allowed after function docstring
- D202
# Multi-line docstring summary should start at the second line
- D213
# First word of the docstring should not be This
- D404
# # Missing docstring in public package
# - D104
# # Missing docstring in __init__
# - D107
# # Missing docstring in public module
# - D100
# # Missing docstring in public class
# - D101
# # Missing docstring in public method
# - D102
# # Missing docstring in public function
# - D103
# # Missing docstring in magic method
# - D105
# # One-line docstring should fit on one line with quotes
# - D200
# # No blank lines allowed after function docstring
# - D202
# # Multi-line docstring summary should start at the second line
# - D213
# # First word of the docstring should not be This
# - D404
# DEFAULT IGNORES
# 1 blank line required before class docstring
- D203
@@ -105,7 +105,7 @@ pep257:
pyflakes:
disable:
# module imported but unused
- F401
# - F401
dodgy:
run: true