2026-03-25 21:09:03 +01:00
|
|
|
# ===========================================================================
|
2026-03-25 20:59:47 +01:00
|
|
|
# Binary / image files (** prefix for recursive matching)
|
2026-03-25 21:09:03 +01:00
|
|
|
# Mirrors .gitignore binary block — defense-in-depth for Copilot context
|
|
|
|
|
# ===========================================================================
|
|
|
|
|
# Images
|
2026-03-25 20:59:47 +01:00
|
|
|
**/*.png
|
|
|
|
|
**/*.jpg
|
|
|
|
|
**/*.jpeg
|
|
|
|
|
**/*.gif
|
|
|
|
|
**/*.webp
|
|
|
|
|
**/*.svg
|
|
|
|
|
**/*.ico
|
|
|
|
|
**/*.bmp
|
2026-03-25 21:09:03 +01:00
|
|
|
**/*.tiff
|
|
|
|
|
**/*.tif
|
|
|
|
|
**/*.psd
|
|
|
|
|
# Audio / Video
|
|
|
|
|
**/*.mp3
|
|
|
|
|
**/*.mp4
|
|
|
|
|
**/*.wav
|
|
|
|
|
**/*.avi
|
|
|
|
|
**/*.mkv
|
|
|
|
|
**/*.flac
|
|
|
|
|
**/*.ogg
|
|
|
|
|
**/*.wma
|
|
|
|
|
**/*.aac
|
|
|
|
|
**/*.m4a
|
|
|
|
|
**/*.mov
|
|
|
|
|
# Archives
|
2026-03-25 20:59:47 +01:00
|
|
|
**/*.zip
|
|
|
|
|
**/*.tar.gz
|
|
|
|
|
**/*.tgz
|
2026-03-25 21:09:03 +01:00
|
|
|
**/*.bz2
|
|
|
|
|
**/*.xz
|
|
|
|
|
**/*.7z
|
|
|
|
|
**/*.rar
|
|
|
|
|
# Documents
|
|
|
|
|
**/*.pdf
|
|
|
|
|
**/*.doc
|
|
|
|
|
**/*.docx
|
|
|
|
|
**/*.xls
|
|
|
|
|
**/*.xlsx
|
|
|
|
|
**/*.ppt
|
|
|
|
|
**/*.pptx
|
|
|
|
|
# Fonts
|
|
|
|
|
**/*.ttf
|
|
|
|
|
**/*.woff
|
|
|
|
|
**/*.woff2
|
|
|
|
|
**/*.eot
|
|
|
|
|
**/*.otf
|
|
|
|
|
# Compiled / binary
|
2026-03-25 20:59:47 +01:00
|
|
|
**/*.o
|
|
|
|
|
**/*.a
|
2026-03-25 21:09:03 +01:00
|
|
|
**/*.so
|
|
|
|
|
**/*.exe
|
|
|
|
|
**/*.dll
|
|
|
|
|
**/*.dylib
|
2026-03-25 20:59:47 +01:00
|
|
|
**/*.pyc
|
|
|
|
|
**/*.pyo
|
|
|
|
|
**/*.class
|
2026-03-29 18:46:04 +02:00
|
|
|
**/*.jar
|
|
|
|
|
**/*.dex
|
2026-03-25 21:09:03 +01:00
|
|
|
# Data
|
|
|
|
|
**/*.apkg
|
|
|
|
|
**/*.bin
|
2026-03-25 20:59:47 +01:00
|
|
|
**/*.flat
|
2026-03-25 21:09:03 +01:00
|
|
|
**/*.db
|
|
|
|
|
**/*.sqlite
|
|
|
|
|
**/*.sqlite3
|
2026-03-25 20:59:47 +01:00
|
|
|
|
2026-03-25 21:09:03 +01:00
|
|
|
# ===========================================================================
|
|
|
|
|
# Large directories
|
|
|
|
|
# ===========================================================================
|
2026-03-25 20:59:47 +01:00
|
|
|
# Virtual environments
|
|
|
|
|
.venv/
|
|
|
|
|
**/.venv/
|
|
|
|
|
|
|
|
|
|
# Node modules
|
|
|
|
|
node_modules/
|
|
|
|
|
**/node_modules/
|
|
|
|
|
|
|
|
|
|
# Caches
|
|
|
|
|
.ruff_cache/
|
|
|
|
|
.mypy_cache/
|
|
|
|
|
__pycache__/
|
|
|
|
|
**/__pycache__/
|
2026-03-25 19:18:58 +01:00
|
|
|
|
2026-03-29 18:46:04 +02:00
|
|
|
# Build outputs (symlinked to ../testsAndMisc_builds/)
|
|
|
|
|
**/build/
|
|
|
|
|
|
|
|
|
|
# Dart / Flutter caches (symlinked to ../testsAndMisc_builds/)
|
|
|
|
|
**/.dart_tool/
|
|
|
|
|
**/ephemeral/
|
|
|
|
|
|
|
|
|
|
# Packaging build artifacts
|
|
|
|
|
**/packaging/**/pkg/
|
|
|
|
|
**/packaging/**/src/
|
2026-03-25 19:18:58 +01:00
|
|
|
|
2026-03-25 20:59:47 +01:00
|
|
|
# Generated / preview images
|
2026-03-25 19:18:58 +01:00
|
|
|
**/generated_images_*/
|
|
|
|
|
**/preview_images/
|
|
|
|
|
|
2026-03-25 21:09:03 +01:00
|
|
|
# Files with many embedded image references
|
2026-03-25 20:59:47 +01:00
|
|
|
python_pkg/cinema_planner/pasted_content.txt
|
|
|
|
|
|
chore: optimize pre-commit, remove tracked binaries, fix lint issues
- Move slow hooks (mypy, pylint, bandit, pytest, prettier) to pre-push stage
- Remove redundant autoflake (ruff covers F401/F841)
- Fix shellcheck OOM by batching files with xargs -n 40
- Remove tracked .o, .wav, .pyc binaries from git
- Move pomodoro wav files to ../testsAndMisc_binaries/ with symlinks
- Add *.o, *.so, *.a to .gitignore
- Refactor hltb._pick_best_hltb_entry to fix C901/PLR0911/SIM102
- Fix SC2034 warnings in gif_to_square.sh and upgrade.sh
- Add disk_cleanup_check.sh script
- Various test and code improvements across screen_locker,
steam_backlog_enforcer, word_frequency, moviepy_showcase
2026-04-10 18:44:51 +02:00
|
|
|
# Large data files (exceed indexing limits)
|
|
|
|
|
linux_configuration/scripts/digital_wellbeing/pacman/words.txt
|
|
|
|
|
|
2026-03-25 19:18:58 +01:00
|
|
|
# C build artifacts
|
|
|
|
|
**/*.out
|
|
|
|
|
**/fps_demo
|