1
0
mirror of https://github.com/l1ving/youtube-dl synced 2025-03-10 05:37:15 +08:00
youtube-dl/setup.cfg
Jakub Wilk 7a1f93ed8e [flake8] Ignore W504 (line break after binary operator)
Both W504 (line break after binary operator) and W503 (line break before binary
operator) were implicitly enabled, even though conceptually they are mutually
exclusive.

W504 had over 100 hits, while W503 had none, so let's disable the former.
2019-04-27 22:11:30 +02:00

7 lines
230 B
INI

[wheel]
universal = True
[flake8]
exclude = youtube_dl/extractor/__init__.py,devscripts/buildserver.py,devscripts/lazy_load_template.py,devscripts/make_issue_template.py,setup.py,build,.git,venv
ignore = E402,E501,W504,E731,E741