mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-22 09:50:37 +00:00
tox: disable W504 "Line break occurred after a binary operator"
This is a new coding rule, which actively contradicts the previous pep8 rule, W503 "line break before binary operator". Both rules are currently in force, which doesn't make a lot of sense. Until the standards people work this out, I'm arbitrarily choosing to disable the rule that involes the fewest coding changes.
This commit is contained in:
parent
99bc43bbe9
commit
4dcd1e2f6a
1 changed files with 1 additions and 1 deletions
2
tox.ini
2
tox.ini
|
@ -2,7 +2,7 @@
|
|||
envlist = flake8, pylint, yamllint, unit, integration, docs
|
||||
|
||||
[flake8]
|
||||
ignore = E221,E241,E501
|
||||
ignore = E221,E241,E501,W504
|
||||
max-line-length = 110
|
||||
|
||||
[testenv]
|
||||
|
|
Loading…
Add table
Reference in a new issue