From ec399adf14f7b53ed24339ca9b0fa93967a6651c Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Sun, 21 Sep 2025 16:16:23 +0800 Subject: Update gitignore 1. Ignore *.rs.bk 2. Ignore *.pdb --- .gitignore | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 2c2fd6c..21d9745 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,13 @@ +# These are backup files generated by rustfmt +**/*.rs.bk + +# MSVC Windows builds of rustc generate these, which store debugging information +*.pdb + +# Generated by cargo mutants +# Contains mutation testing data +**/mutants.out*/ + # All temp directory **/.temp/ @@ -5,4 +15,4 @@ /.idea/ # Obsidian directory -/.obsidian/ \ No newline at end of file +/.obsidian/ -- cgit