From d00885ced7fe6e22f55beb9113299f21ffd1d333 Mon Sep 17 00:00:00 2001 From: Reed Krantz Date: Thu, 4 Jun 2026 20:18:34 -0500 Subject: [PATCH] feat(rust): add to .gitignore --- rust/template/.gitignore | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/rust/template/.gitignore b/rust/template/.gitignore index 16b60b6..e21e98c 100644 --- a/rust/template/.gitignore +++ b/rust/template/.gitignore @@ -7,5 +7,17 @@ result debug/ target/ +# Editor configuration +.vscode/ +.zed/ +.helix/ +.nvim.lua + # These are backup files generated by rustfmt **/*.rs.bk + +# MSVC Windows builds of rustc generate these, which store debugging information +*.pdb + +# Ignore .DS_Store file in mac +**/.DS_Store