fix: address ObsidianReviewBot linting issues

- Add type guard for recursive parameter in notifications.ts to ensure
  only boolean values are stringified (prevents [object Object] output)
- Remove unused error variables from catch blocks across 5 files:
  - vault-tools.ts (5 instances)
  - frontmatter-utils.ts (3 instances)
  - search-utils.ts (2 instances)
  - waypoint-utils.ts (1 instance)
This commit is contained in:
2026-01-31 20:32:24 -05:00
parent 8c5ad5c401
commit 3593291596
5 changed files with 14 additions and 14 deletions

View File

@@ -100,7 +100,7 @@ export class WaypointUtils {
try {
const content = await vault.read(file);
hasWaypoint = this.hasWaypointMarker(content);
} catch (error) {
} catch {
// If we can't read the file, we can't check for waypoints
}