mirror of
https://github.com/kuhyx/testsAndMisc.git
synced 2026-07-04 15:43:06 +02:00
Full per-directory history preserved at https://github.com/kuhyx/testsAndMisc-archive
112 lines
1.7 KiB
Plaintext
112 lines
1.7 KiB
Plaintext
# ===========================================================================
|
|
# Binary / image files (** prefix for recursive matching)
|
|
# Mirrors .gitignore binary block — defense-in-depth for Copilot context
|
|
# ===========================================================================
|
|
# Images
|
|
**/*.png
|
|
**/*.jpg
|
|
**/*.jpeg
|
|
**/*.gif
|
|
**/*.webp
|
|
**/*.svg
|
|
**/*.ico
|
|
**/*.bmp
|
|
**/*.tiff
|
|
**/*.tif
|
|
**/*.psd
|
|
# Audio / Video
|
|
**/*.mp3
|
|
**/*.mp4
|
|
**/*.wav
|
|
**/*.avi
|
|
**/*.mkv
|
|
**/*.flac
|
|
**/*.ogg
|
|
**/*.wma
|
|
**/*.aac
|
|
**/*.m4a
|
|
**/*.mov
|
|
# Archives
|
|
**/*.zip
|
|
**/*.tar.gz
|
|
**/*.tgz
|
|
**/*.bz2
|
|
**/*.xz
|
|
**/*.7z
|
|
**/*.rar
|
|
# Documents
|
|
**/*.pdf
|
|
**/*.doc
|
|
**/*.docx
|
|
**/*.xls
|
|
**/*.xlsx
|
|
**/*.ppt
|
|
**/*.pptx
|
|
# Fonts
|
|
**/*.ttf
|
|
**/*.woff
|
|
**/*.woff2
|
|
**/*.eot
|
|
**/*.otf
|
|
# Compiled / binary
|
|
**/*.o
|
|
**/*.a
|
|
**/*.so
|
|
**/*.exe
|
|
**/*.dll
|
|
**/*.dylib
|
|
**/*.pyc
|
|
**/*.pyo
|
|
**/*.class
|
|
**/*.jar
|
|
**/*.dex
|
|
# Data
|
|
**/*.apkg
|
|
**/*.bin
|
|
**/*.flat
|
|
**/*.db
|
|
**/*.sqlite
|
|
**/*.sqlite3
|
|
|
|
# ===========================================================================
|
|
# Large directories
|
|
# ===========================================================================
|
|
# Virtual environments
|
|
.venv/
|
|
**/.venv/
|
|
|
|
# Node modules
|
|
node_modules/
|
|
**/node_modules/
|
|
|
|
# Caches
|
|
.ruff_cache/
|
|
.mypy_cache/
|
|
__pycache__/
|
|
**/__pycache__/
|
|
|
|
# Build outputs (symlinked to ../testsAndMisc_builds/)
|
|
**/build/
|
|
|
|
# Dart / Flutter caches (symlinked to ../testsAndMisc_builds/)
|
|
**/.dart_tool/
|
|
**/ephemeral/
|
|
|
|
# Packaging build artifacts
|
|
**/packaging/**/pkg/
|
|
**/packaging/**/src/
|
|
|
|
# Generated / preview images
|
|
**/generated_images_*/
|
|
**/preview_images/
|
|
|
|
# Files with many embedded image references
|
|
python_pkg/cinema_planner/pasted_content.txt
|
|
|
|
# Large data files (exceed indexing limits)
|
|
linux_configuration/scripts/digital_wellbeing/pacman/words.txt
|
|
|
|
# C build artifacts
|
|
**/*.out
|
|
**/fps_demo
|