From 8373a8c9bede5536dc11e4bd03a10efa73b0de9c Mon Sep 17 00:00:00 2001 From: Dorian Date: Tue, 27 Jan 2026 22:34:21 +0000 Subject: [PATCH] Add root .gitignore to keep Rust target/ and common artifacts untracked --- .gitignore | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..545f58f4 --- /dev/null +++ b/.gitignore @@ -0,0 +1,19 @@ +# Rust build output +target/ +**/target/ + +# Cargo lock for libraries (optional; binary crates often commit Cargo.lock) +# Cargo.lock + +# IDE / editor +.idea/ +.vscode/ +*.swp +*.swo +*~ +.DS_Store + +# Environment and local overrides +.env +.env.local +*.local