From 174026eb21f09bb60092ce502b5a0ace8820ba7a Mon Sep 17 00:00:00 2001 From: Philipp Sieder <12394266+philippsied@users.noreply.github.com> Date: Thu, 21 May 2026 22:40:54 +0200 Subject: [PATCH] chore(plugin): add gitignore for OS and editor cruft Adds .gitignore (.DS_Store, editor swap files, logs). Existing .DS_Store files were untracked and removed from the working tree. --- .gitignore | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b075838 --- /dev/null +++ b/.gitignore @@ -0,0 +1,16 @@ +# OS +.DS_Store +.AppleDouble +.LSOverride +Thumbs.db + +# Editor +*.swp +*.swo +*~ +.idea/ +.vscode/ + +# Logs / temp +*.log +*.tmp