mirror of
https://github.com/l1ving/youtube-dl
synced 2025-03-10 05:37:15 +08:00
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.
7 lines
230 B
INI
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
|