From 5660f53a0b1cb03df0b423dbd0116afff98e075c Mon Sep 17 00:00:00 2001 From: Oz Tamir Date: Tue, 23 Jun 2026 13:51:57 +0300 Subject: [PATCH] chore(vaultcms): gitignore claude-sidebar's data.json (machine-specific state) claude-sidebar writes data.json holding only `lastCwd` (an absolute local path), which is per-user noise, not shared vault config. Ignore it specifically while keeping every other plugin's data.json tracked. Co-Authored-By: Claude Opus 4.8 (1M context) --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 93ee2cf..90062df 100644 --- a/.gitignore +++ b/.gitignore @@ -40,3 +40,6 @@ docs/superpowers/ src/content/.obsidian/plugins/*/* !src/content/.obsidian/plugins/*/manifest.json !src/content/.obsidian/plugins/*/data.json +# …except claude-sidebar's data.json — it only holds machine-specific state +# (lastCwd, an absolute path), so it's per-user noise, not shared config. +src/content/.obsidian/plugins/claude-sidebar/data.json