You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Type-safe frontmatter access: Created src/utils/frontmatter.ts module with typed helpers (toSafeFm, getFmString, getFmStringArray, getFmRecordArray) to safely access frontmatter, eliminating all @typescript-eslint/no-unsafe-assignment, no-unsafe-call, and no-unsafe-member-access errors.
Async callbacks in event listeners: Fixed async callbacks in addEventListener that triggered @typescript-eslint/no-misused-promises. Replaced with void (async () => { ... })() pattern.
Window timers: Use window.clearTimeout instead of clearTimeout for popout window compatibility (rule obsidianmd/prefer-window-timers).
Improved
Added linting conventions documentation in AGENTS.md for future contributions.