Skip to content

Commit e319955

Browse files
authored
Add flake8 pydocstyle. (#893)
1 parent d03749a commit e319955

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ flake8-comprehensions
7070
isort
7171
pep8
7272
pyflakes
73+
pydocstyle
7374
pylint
7475
pytest
7576
pytest-cov

setup.cfg

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -470,15 +470,15 @@ max-complexity = 25
470470
doctests = True
471471
max-line-length = 120
472472
# To work with Black
473+
# D202 No blank lines allowed after function docstring
474+
# E203: Whitespace before ':'
473475
# E501: line too long
474476
# W503: Line break occurred before a binary operator
475-
# E203: Whitespace before ':'
476-
# D202 No blank lines allowed after function docstring
477477
# W504 line break after binary operator
478478
ignore =
479479
D202,
480-
E501,
481480
E203,
481+
E501,
482482
W503,
483483
W504,
484484

0 commit comments

Comments
 (0)