From 2e09096997129111f6a12a2294225198558d7ecc Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Thu, 29 Jan 2026 15:43:54 +0000 Subject: [PATCH] Add remaining templates (languages, frameworks, IDEs, OS) --- src/gitignore_cli/templates/rust.yaml | 28 +++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 src/gitignore_cli/templates/rust.yaml diff --git a/src/gitignore_cli/templates/rust.yaml b/src/gitignore_cli/templates/rust.yaml new file mode 100644 index 0000000..3be8ce4 --- /dev/null +++ b/src/gitignore_cli/templates/rust.yaml @@ -0,0 +1,28 @@ +name: rust +category: language +description: Rust development environment +patterns: | + # Build results + **/target/ + Cargo.lock + target/ + + # Cargo + Cargo.lock + bin/ + doc/ + *.dot + + # Backup files + *~ + + # Various IDEs + .vscode/ + .idea/ + *.swp + *.swo + *~ + + # OS + .DS_Store + Thumbs.db