diff options
| author | 2026-01-16 10:19:11 +0800 | |
|---|---|---|
| committer | 2026-01-16 10:19:11 +0800 | |
| commit | f83ed85b510f3ab18c51e9c161a4afb23482b9de (patch) | |
| tree | 7d5e6e96ddcd169282908fa0a53739ee7aad94e4 | |
| parent | ca6b59a3d5a54e85d5c8ce913c584449b7550396 (diff) | |
| download | DropOut-f83ed85b510f3ab18c51e9c161a4afb23482b9de.tar.gz DropOut-f83ed85b510f3ab18c51e9c161a4afb23482b9de.zip | |
chore: update .gitignore to include additional files and directories
Added entries for Python version, Ruff cache, ESLint cache, Svelte build files, Node.js modules, and Python build artifacts to the .gitignore file to improve project cleanliness and prevent unnecessary files from being tracked.
| -rw-r--r-- | .gitignore | 21 |
1 files changed, 20 insertions, 1 deletions
@@ -5,4 +5,23 @@ target/ Cargo.lock # Tauri dev files -src-tauri/gen/
\ No newline at end of file +src-tauri/gen/ + +# Python version +.python-version + +# Ruff +.ruff_cache/ + +# ESLint +.eslintcache + +# Svelte +.svelte-kit/ + +# Node.js +node_modules/ + +# Python Build +dist/ +__pycache__/
\ No newline at end of file |