diff --git a/CHANGELOG.md b/CHANGELOG.md index 8eae0c5..b957ddf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # DOGEAR Changelog -## [Initial Version] - 2026-03-11 +## [Initial Version] - {PR_MERGE_DATE} - Fuzzy search bookmarks from a YAML config file - Open bookmarks in browser diff --git a/eslint.config.js b/eslint.config.js index af42d8a..543274e 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -1 +1,4 @@ -module.exports = require("@raycast/eslint-config").flat(); +const { defineConfig } = require("eslint/config"); +const raycastConfig = require("@raycast/eslint-config"); + +module.exports = defineConfig([...raycastConfig]); diff --git a/package.json b/package.json index 3a396a4..817a371 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,7 @@ "icon": "extension-icon.png", "author": "flexphere", "categories": [ - "Productivity" + "Web" ], "license": "MIT", "commands": [ diff --git a/src/search-bookmarks.tsx b/src/search-bookmarks.tsx index 3e54033..46712ff 100644 --- a/src/search-bookmarks.tsx +++ b/src/search-bookmarks.tsx @@ -14,10 +14,6 @@ interface Config { bookmarks: Bookmark[]; } -interface Preferences { - configPath: string; -} - function expandPath(filePath: string): string { if (filePath.startsWith("~")) { return filePath.replace("~", os.homedir());