From 0fbc4e352c0581027c3147545439b01f19dac3b5 Mon Sep 17 00:00:00 2001 From: Bill Date: Tue, 28 Oct 2025 19:40:29 -0400 Subject: [PATCH] docs: update config path examples to use generic folders Replace hardcoded .obsidian references in exclude pattern examples with generic 'templates' folder. Config directory location is user-configurable in Obsidian, so examples should not reference system directories. Addresses ObsidianReviewBot feedback for plugin submission. --- src/tools/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tools/index.ts b/src/tools/index.ts index 59a2a28..ea83256 100644 --- a/src/tools/index.ts +++ b/src/tools/index.ts @@ -232,7 +232,7 @@ export class ToolRegistry { excludes: { type: "array", items: { type: "string" }, - description: "Glob patterns to exclude (e.g., ['.obsidian/**', '*.tmp']). Files matching these patterns will be skipped. Takes precedence over includes." + description: "Glob patterns to exclude (e.g., ['templates/**', '*.tmp']). Files matching these patterns will be skipped. Takes precedence over includes." }, folder: { type: "string", @@ -297,7 +297,7 @@ export class ToolRegistry { excludes: { type: "array", items: { type: "string" }, - description: "Glob patterns to exclude (e.g., ['.obsidian/**', '*.tmp']). Takes precedence over includes." + description: "Glob patterns to exclude (e.g., ['templates/**', '*.tmp']). Takes precedence over includes." }, only: { type: "string",