Skip to content

Commit

Permalink
test: let black handle line lengths
Browse files Browse the repository at this point in the history
How can it be that telling everyone to use 80 means that black allows 88 and
then pylint and pycodestyle complain!?
  • Loading branch information
Ned Batchelder committed Oct 12, 2023
1 parent b521166 commit 435456e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ load-plugins = pylint_pytest
[MESSAGES CONTROL]
enable =
blacklisted-name,
line-too-long,

syntax-error,
init-is-generator,
Expand Down Expand Up @@ -183,6 +182,7 @@ enable =
deprecated-pragma,
disable =
invalid-name,
line-too-long,
file-ignored,
bad-indentation,
unused-wildcard-import,
Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -110,10 +110,10 @@ max-line-length = 80

[pycodestyle]
exclude = .git,.tox
max-line-length = 80
; E203 = whitespace before ':'
; E501 line too long
; W503 line break before binary operator
ignore = E203,W503
ignore = E203,E501,W503

[pydocstyle]
; D105 = Missing docstring in magic method
Expand Down

0 comments on commit 435456e

Please sign in to comment.