Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
5 changes: 4 additions & 1 deletion eslint.config.js
Original file line number Diff line number Diff line change
@@ -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]);
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"icon": "extension-icon.png",
"author": "flexphere",
"categories": [
"Productivity"
"Web"
],
"license": "MIT",
"commands": [
Expand Down
4 changes: 0 additions & 4 deletions src/search-bookmarks.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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());
Expand Down
Loading