diff options
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 116 |
1 files changed, 84 insertions, 32 deletions
diff --git a/.gitignore b/.gitignore index 074874a51..efdbc9bf0 100644 --- a/.gitignore +++ b/.gitignore @@ -1,26 +1,11 @@ -*.pyc -*.pyo -*.class -*~ -*.DS_Store -wine-py2exe/ -py2exe.log -*.kate-swp -build/ -dist/ -MANIFEST -README.txt -youtube-dl.1 -youtube-dl.bash-completion -youtube-dl.fish -youtube_dl/extractor/lazy_extractors.py -youtube-dl -youtube-dl.exe -youtube-dl.tar.gz -.coverage -cover/ -updates_key.pem -*.egg-info +# Config +*.conf +*.spec +cookies +*cookies.txt +.netrc + +# Downloaded *.srt *.ttml *.sbv @@ -31,23 +16,93 @@ updates_key.pem *.m4v *.mp3 *.3gp +*.webm *.wav *.ape *.mkv +*.flac +*.avi *.swf *.part +*.part-* *.ytdl +*.dump +*.frag +*.frag.urls +*.aria2 *.swp +*.ogg +*.opus +*.info.json +*.live_chat.json +*.jpg +*.jpeg +*.png +*.webp +*.annotations.xml +*.description + +# Allow config/media files in testdata +!test/** + +# Python +*.pyc +*.pyo +.pytest_cache +wine-py2exe/ +py2exe.log +build/ +dist/ +zip/ +tmp/ +venv/ +completions/ + +# Misc +*~ +*.DS_Store +*.kate-swp +MANIFEST test/local_parameters.json +.coverage +cover/ +secrets/ +updates_key.pem +*.egg-info .tox -youtube-dl.zsh +*.class + +# Generated +AUTHORS +README.txt +.mailmap +*.1 +*.bash-completion +*.fish +*.exe +*.tar.gz +*.zsh +*.spec +test/testdata/player-*.js + +# Binary +/ytdlp +yt-dlp.zip +*.exe -# IntelliJ related files +# Text Editor / IDE .idea *.iml +.vscode +*.sublime-* -tmp/ -venv/ +# Lazy extractors +*/extractor/lazy_extractors.py + +# Plugins +ytdlp_plugins/extractor/* +!ytdlp_plugins/extractor/__init__.py +!ytdlp_plugins/extractor/sample.py # VS Code related files .vscode @@ -96,8 +151,5 @@ test/test_iqiyi_sdk_interpreter.py test/test_swfinterp.py test/test_update.py test/versions.json -youtube_dl/swfinterp.py -youtube_dl/update.py - -# flycheck -flycheck_*.py +yt_dlp/swfinterp.py +yt_dlp/update.py |