pycodestyle: Disable W504 line break after binary operator

This commit is contained in:
Cole Robinson 2018-09-29 13:48:36 -04:00
parent 7356afcca7
commit 2d44912a70
1 changed files with 2 additions and 1 deletions

View File

@ -21,7 +21,8 @@ format = pylint
# E306: Expected 1 blank line before a nested definition
# E402: Module level import not at top of file
# E501: Line too long (82 > 79 characters)
# W504: line break after binary operator
# E741: Do not use variables named l, O, or I
ignore = E122, E123, E126, E127, E128, E129, E221, E241, E301, E303, E305, E306, E402, E501, E741
ignore = E122, E123, E126, E127, E128, E129, E221, E241, E301, E303, E305, E306, E402, E501, W504, E741