From 46b79f20b99fdc403a269014b119307bb19d1304 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Wed, 4 Feb 2026 04:43:12 +0000 Subject: [PATCH] Initial upload: gitignore-gen Rust CLI tool with 100+ templates --- app/gitignore-gen/.gitignore | 54 ++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 app/gitignore-gen/.gitignore diff --git a/app/gitignore-gen/.gitignore b/app/gitignore-gen/.gitignore new file mode 100644 index 0000000..f6c3b65 --- /dev/null +++ b/app/gitignore-gen/.gitignore @@ -0,0 +1,54 @@ +# Generated by gitignore-gen + +# Build results +/target +**/target/ +Cargo.lock + +# IDE +.idea/ +.vscode/ +*.swp +*.swo +*~ +.DS_Store + +# Editor +*.orig +*.rej +*.bak +*~ + +# Testing +coverage/ + +# OS +.DS_Store +.DS_Store? +._* +.Spotlight-V100 +.Trashes +ehthumbs.db +Thumbs.db + +# Logs +logs +*.log + +# Misc +*.pem +.env +.env.local +.env.*.local + +# IDE - CLion +/.idea/ +cmake-build-*/ + +# IDE - VSCode +.vscode/ + +# IDE - IntelliJ +*.iml +*.ipr +*.iws