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
Fix Obsidian plugin review issues for community store
Errors fixed:
- authorUrl: point to GitHub profile, not repo URL
- Use Platform.isMobile instead of navigator API
- Use Setting.setHeading() instead of createEl("h2"/"h3"/"h4")
- Use CSS class instead of style.display for collapsible sections
Warnings fixed:
- Remove builtin-modules dependency, inline node builtins list
- Replace `any` types with proper types across all files
- Use activeDocument instead of document for popout compatibility
- Use setDestructive() instead of deprecated setWarning()
- Use getLanguage() API instead of localStorage for locale detection
- Use window.setTimeout/clearTimeout for popout compatibility
- Use FileManager.trashFile() instead of Vault.trash()
- Add void prefix for fire-and-forget promises
- Fix unused error variable
- Remove CSS !important by increasing selector specificity
- Remove unnecessary type assertions