summaryrefslogtreecommitdiff
path: root/setup.cfg
AgeCommit message (Collapse)Author
2019-05-11Fix W504 and disable W503 (closes #20863)Sergey M․
2018-06-02Ignore venv directoryLogan Fleur
2018-02-03flake8: Ignore E741 'ambiguous variable name'Chih-Hsuan Yen
Most of violating codes are reverse-engineered JavaScripts. IMO it's better to keep original (obfuscated) names. [skip ci]
2016-04-08lazy extractors: Style fixesJaime Marquínez Ferrándiz
* Sort extractors alphabetically * Add newlines when needed (youtube_dl/extractors/lazy_extractors.py pass the flake8 test now)
2016-03-29Exclude make_issue_template.py from flake8Sergey M․
2015-02-11flake8: Ignore some error added in pep8 1.6Jaime Marquínez Ferrándiz
* E402: we exectute code between imports, like modifying 'sys.path' in the tests * E731: we assign to lambdas in a lot of places, we may want to consider defining functions in a single line instead (what pep8 recommends)
2015-01-25flake8: Ignore .gitPhilipp Hagemeister
2014-12-17[flake8] Ignore build/ directoryPhilipp Hagemeister
That directory is temporarily generated when building for PyPi and may be present if something goes wrong with the upload.
2014-12-16flake8: Add more ignored filesJaime Marquínez Ferrándiz
* setup.py: the '__version__' variable is not defined in the script, it is loadded from youtube_dl/version.py * devscripts/buildserver.py: Produces a lot of messages
2014-12-16Move flake8 configuration to setup.cfgJaime Marquínez Ferrándiz
It will be used when calling flake8 from any directory in the project
2014-03-16Build and upload universal wheels to pypiJaime Marquínez Ferrándiz