From d58e41c444519f9ef044ecda543c8047fe0be598 Mon Sep 17 00:00:00 2001 From: Erick Ahmed Date: Thu, 1 May 2025 21:50:34 +0200 Subject: [PATCH] Create .gitignore --- .gitignore | 65 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1e65d57 --- /dev/null +++ b/.gitignore @@ -0,0 +1,65 @@ +# === Arduino specific === +*.elf +*.hex +*.eep +*.bin +*.map +*.d +*.dep +*.o +*.a +*.lst +*.srec +*.bak +*.tmp +*.swp +*.swo +*.log + +# Arduino build folders (varies by IDE/version) +build/ +*.sketches/ +*.arduino/ +*.ino.cpp + +# Arduino libraries you might not want tracked +libraries/ + +# PlatformIO (if you ever use it) +.pio/ +.vscode/ + +# === OS and Editor specific === +# macOS +.DS_Store +.AppleDouble +.LSOverride +Icon +._* + +# macOS metadata +.Spotlight-V100 +.Trashes +.fseventsd +.VolumeIcon.icns + +# Windows +Thumbs.db +ehthumbs.db +Desktop.ini +$RECYCLE.BIN/ + +# JetBrains IDEs +.idea/ +*.iml + +# VS Code +.vscode/ + +# Backup files +*~ +*.orig +*.bak + +# Logs +*.log