yaml2ical/.flake8
Jeremy Stanley 3178bac6f8 Address W504 linting rule
PEP 8 recommends not breaking lines immediately after operators.

Change-Id: Ic80fc9469257ac8382daa2435be28299a03b1ab9
2025-04-03 23:48:20 +00:00

6 lines
193 B
INI

[flake8]
exclude=.venv,.git,.nox,.tox,dist,doc,*lib/python*,*egg,build
# E123, E125 and W503 are invalid per PEP-8; OpenStack's H rules don't apply
ignore = E123,E125,H,W503
show-source = True