projects
/
youtube-dl
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1367c79
)
flake8: Ignore E741 'ambiguous variable name'
author
Chih-Hsuan Yen
<yan12125@gmail.com>
Sat, 3 Feb 2018 13:01:02 +0000
(21:01 +0800)
committer
Chih-Hsuan Yen
<yan12125@gmail.com>
Sat, 3 Feb 2018 13:02:30 +0000
(21:02 +0800)
Most of violating codes are reverse-engineered JavaScripts. IMO it's
better to keep original (obfuscated) names.
[skip ci]
setup.cfg
patch
|
blob
|
history
diff --git
a/setup.cfg
b/setup.cfg
index 2dc06ffe413f76f4d776fe44780f327a170d7801..5208f7ae234fa15b52a1aac67b7d909c9d53de11 100644
(file)
--- a/
setup.cfg
+++ b/
setup.cfg
@@
-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