From 13fdba5fffcaf91f7b0bf63677688361b6dd9442 Mon Sep 17 00:00:00 2001 From: FallenSigh Date: Wed, 27 May 2026 02:16:54 +0800 Subject: [PATCH] chore: add root .gitignore --- .gitignore | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..252f001 --- /dev/null +++ b/.gitignore @@ -0,0 +1,46 @@ +# ==================== +# IDE / Editor +# ==================== +.vscode/ +.idea/ +*.swp +*.swo +*~ +\#*\# + +# ==================== +# ROS 2 +# ==================== +ros2/build/ +ros2/install/ +ros2/log/ + +# ==================== +# Python +# ==================== +__pycache__/ +*.py[cod] +*.egg-info/ +dist/ +.venv/ +venv/ + +# ==================== +# PlatformIO +# ==================== +.pio/ +.cache/ +compile_commands.json +.clangd + +# ==================== +# OS +# ==================== +.DS_Store +Thumbs.db + +# ==================== +# Misc +# ==================== +*.log +*.tmp