From 61bf0721f1eefb9e1cb989ed0a4ce8d50e446ecc Mon Sep 17 00:00:00 2001 From: xberry1231 Date: Sat, 25 Apr 2026 01:08:27 -0400 Subject: [PATCH] init with gitignore --- .gitignore | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2bf0eab --- /dev/null +++ b/.gitignore @@ -0,0 +1,31 @@ +# Dependencies +node_modules/ + +# Build output staging directory +# (main.js itself IS committed — convention for Obsidian plugins so you +# can clone the repo and drop it directly into plugins folder) +dist/ + +# Bun lockfile is binary; keep it for reproducibility but no other lockfiles +package-lock.json +yarn.lock +pnpm-lock.yaml + +# Editor / OS noise +.vscode/ +.idea/ +.DS_Store +Thumbs.db +*.swp +*~ + +# Logs +*.log +npm-debug.log* +bun-debug.log* + +# Runtime data Obsidian generates +data.json + +# Internal development docs +DEVELOPMENT.md \ No newline at end of file