From 6779e2106c9716bce877f44dced47c7ea1b54974 Mon Sep 17 00:00:00 2001 From: MayaTheShy Date: Sat, 8 Nov 2025 13:50:40 -0500 Subject: [PATCH] chore: add .gitignore for build, Rust target, editor artifacts --- .gitignore | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b56079b --- /dev/null +++ b/.gitignore @@ -0,0 +1,27 @@ +# Build artifacts +/build/ + +# CMake +CMakeFiles/ +CMakeCache.txt +cmake-build-*/ +Makefile +*.cmake +compile_commands.json +install_manifest.txt + +# Rust bridge target +/bridge/target/ + +# IDE/editor +.vscode/ +.idea/ +*.user + +# Logs +*.log + +# Temporary +*.tmp +*.swp +.DS_Store