flake8: Ignore E741 'ambiguous variable name'

Most of violating codes are reverse-engineered JavaScripts. IMO it's
better to keep original (obfuscated) names.

[skip ci]
This commit is contained in:
Chih-Hsuan Yen 2018-02-03 21:01:02 +08:00
parent 1367c798e3
commit 4989d351b4
1 changed files with 1 additions and 1 deletions

View File

@ -3,4 +3,4 @@ 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
ignore = E402,E501,E731
ignore = E402,E501,E731,E741