aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.gitignore
diff options
context:
space:
mode:
authorHsiangNianian <i@jyunko.cn>2026-01-16 10:19:11 +0800
committerHsiangNianian <i@jyunko.cn>2026-01-16 10:19:11 +0800
commitf83ed85b510f3ab18c51e9c161a4afb23482b9de (patch)
tree7d5e6e96ddcd169282908fa0a53739ee7aad94e4 /.gitignore
parentca6b59a3d5a54e85d5c8ce913c584449b7550396 (diff)
downloadDropOut-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.
Diffstat (limited to '.gitignore')
-rw-r--r--.gitignore21
1 files changed, 20 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore
index 3f0ebb6..1c6830d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -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