mirror of
https://github.com/kuhyx/testsAndMisc.git
synced 2026-07-04 15:23:03 +02:00
- C/lichess_random_engine, vocabulary_curve, misc/split, 1dvelocitysimulator, opening_learner: test suites added - CPP/miscelanious: tests added - TS/battery-status, champions_leauge_scores, two-inputs: tests added - python_pkg/fm24_searcher, wake_alarm: new packages added - Fix ruff/cppcheck/eslint/clang-format failures - Update .gitignore for C/C++ build artifacts
134 lines
2.3 KiB
Plaintext
134 lines
2.3 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/
|
|
|
|
# Coverage reports
|
|
coverage/
|
|
**/coverage/
|
|
|
|
# Caches
|
|
.ruff_cache/
|
|
.mypy_cache/
|
|
__pycache__/
|
|
**/__pycache__/
|
|
|
|
# Build outputs (symlinked to ../testsAndMisc_builds/)
|
|
pomodoro_app/build/
|
|
horatio/horatio_app/build/
|
|
sonic_pi/build/
|
|
CPP/mini_browser/build/
|
|
**/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/
|
|
|
|
# Anki decks
|
|
python_pkg/anki_decks/
|
|
|
|
# Image-heavy directories (moved to ../testsAndMisc_binaries/)
|
|
python_pkg/praca_magisterska_video/images/
|
|
python_pkg/praca_magisterska_video/
|
|
python_pkg/articles/uploads/
|
|
python_pkg/download_cats/http_cat_cache/
|
|
C/misc/randomJPG/
|
|
|
|
# Files with many embedded image references
|
|
python_pkg/cinema_planner/pasted_content.txt
|
|
|
|
# Large data files (exceed indexing limits)
|
|
python_pkg/keyboard_coop/words_dictionary.json
|
|
linux_configuration/scripts/digital_wellbeing/pacman/words.txt
|
|
python_pkg/word_frequency/test_texts/
|
|
|
|
# C build artifacts
|
|
**/*.out
|
|
**/random_engine
|
|
**/fps_demo
|
|
**/1dvelocitysimulator
|