Skip to content

Commit 1dd82ec

Browse files
committed
Ignore linting failures introduced by black.
1 parent 6707034 commit 1dd82ec

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

pylintrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ disable=bad-continuation,
2525
redefined-outer-name,
2626
too-many-arguments,
2727
too-many-branches,
28+
too-many-lines,
2829
too-many-public-methods,
2930
trailing-comma-tuple,
3031
trailing-newlines,

pytest.ini

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
[pytest]
22
doctest_optionflags = ALLOW_UNICODE ALLOW_BYTES
3+
flake8-max-line-length = 88
34
flake8-ignore =
45
W503 # https://www.flake8rules.com/rules/W503.html
6+
E203 # https://www.flake8rules.com/rules/E203.html
57

6-
docs/conf.py E121 E122 E265 E401 E501
8+
docs/conf.py E121 E122 E265 E401
79
tests/test_encoding.py E128 E221 E241 E302 E401 E501 E731
8-
tests/test_form.py E265 E501
10+
tests/test_form.py E265
911
tests/test_html.py E123 E128 E241 E303 E501 E502
1012
tests/test_http.py E128 E261 E302 W291
1113
tests/test_url.py E126 E127 E128 E226 E261 E303 E501 W293 W391

0 commit comments

Comments
 (0)