Skip to content

Commit b6893da

Browse files
committed
Moves pydocstyle config to setup.cfg
1 parent 0cc7a51 commit b6893da

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ flakeplusdiag:
9898
-$(MAKE) flakepluscheck
9999

100100
pep257check:
101-
$(PYDOCSTYLE) --ignore=D102,D104,D203,D105 "$(PROJ)"
101+
$(PYDOCSTYLE) "$(PROJ)"
102102

103103
flakes: flakediag flakeplusdiag pep257check
104104

setup.cfg

+3
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ all_files = 1
1212
# whenever it makes the code more readable.
1313
ignore = N806, N802, N801, N803
1414

15+
[pep257]
16+
ignore = D102,D104,D203,D105
17+
1518
[bdist_rpm]
1619
requires = amqp >= 1.4.5
1720

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,4 +57,4 @@ commands =
5757

5858
[testenv:pydocstyle]
5959
commands =
60-
pydocstyle --ignore=D102,D104,D203,D105 kombu
60+
pydocstyle {toxinidir}/kombu

0 commit comments

Comments
 (0)