We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d03749a commit e319955Copy full SHA for e319955
requirements.txt
@@ -70,6 +70,7 @@ flake8-comprehensions
70
isort
71
pep8
72
pyflakes
73
+pydocstyle
74
pylint
75
pytest
76
pytest-cov
setup.cfg
@@ -470,15 +470,15 @@ max-complexity = 25
470
doctests = True
471
max-line-length = 120
472
# To work with Black
473
+# D202 No blank lines allowed after function docstring
474
+# E203: Whitespace before ':'
475
# E501: line too long
476
# W503: Line break occurred before a binary operator
-# E203: Whitespace before ':'
-# D202 No blank lines allowed after function docstring
477
# W504 line break after binary operator
478
ignore =
479
D202,
480
- E501,
481
E203,
+ E501,
482
W503,
483
W504,
484
0 commit comments