about summary refs log tree commit diff
path: root/setup.cfg
diff options
context:
space:
mode:
authorChih-Hsuan Yen <yan12125@gmail.com>2018-02-03 21:01:02 +0800
committerChih-Hsuan Yen <yan12125@gmail.com>2018-02-03 21:02:30 +0800
commit4989d351b4ccec3e30d081eed4b8d39a8292fc25 (patch)
treebaf73f5a77fe45e9e9555acc0a20f9755b4f2093 /setup.cfg
parent1367c798e3fd9ab29ebfa2ad62b90af6b793d653 (diff)
downloadyoutube-dl-4989d351b4ccec3e30d081eed4b8d39a8292fc25.tar.gz
youtube-dl-4989d351b4ccec3e30d081eed4b8d39a8292fc25.tar.xz
youtube-dl-4989d351b4ccec3e30d081eed4b8d39a8292fc25.zip
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]
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.cfg b/setup.cfg
index 2dc06ffe4..5208f7ae2 100644
--- 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