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
4 changes: 4 additions & 0 deletions .git-blame-ignore-revs
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Run `git config blame.ignoreRevsFile .git-blame-ignore-revs` to activate.

# Adopt oxfmt as the repository formatter (whole-repo reformat)
bb9b63d9c1bcc0d52356c82a4d97a2ef06d45a95
1 change: 0 additions & 1 deletion .github/ISSUE_TEMPLATE/beta-feedback.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,3 @@ body:
options:
- label: I did not include API keys, private page contents, account tokens, or confidential data.
required: true

1 change: 0 additions & 1 deletion .github/ISSUE_TEMPLATE/provider-options.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,4 +76,3 @@ body:
options:
- label: I did not include API keys, private page contents, account tokens, or confidential data.
required: true

1 change: 0 additions & 1 deletion .github/ISSUE_TEMPLATE/website-translation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,4 +84,3 @@ body:
options:
- label: I did not include API keys, private page contents, account tokens, or confidential data.
required: true

1 change: 0 additions & 1 deletion .github/ISSUE_TEMPLATE/youtube-captions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,4 +76,3 @@ body:
options:
- label: I did not include API keys, private videos, account tokens, or confidential data.
required: true

3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ jobs:
- name: Lint
run: pnpm lint

- name: Format check
run: pnpm fmt:check

- name: Test
run: pnpm test

Expand Down
6 changes: 6 additions & 0 deletions .oxfmtrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"$schema": "./node_modules/oxfmt/configuration_schema.json",
"printWidth": 100,
"trailingComma": "none",
"ignorePatterns": ["**/*.md", "apps/extension/test/fixtures/**"]
}
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Changed

- Upgraded TypeScript to 7.0 (native Go compiler), cutting `tsc --noEmit` from
~4.7s to ~1.4s. Adjusted three `Element.matches("<tag>")` call sites where the
new lib.dom `this is` narrowing collapsed `HTMLElement` to `never`.
- Replaced ESLint + typescript-eslint with oxlint (type-aware linting via
`oxlint-tsgolint`), preserving the same rule set including
`no-floating-promises` and the `no-unsafe-*` family. Lint now runs in ~1s.
- Adopted oxfmt as the repository formatter (Prettier-compatible,
`printWidth: 100`, no trailing commas). Markdown files and extraction test
fixtures are excluded. CI now enforces `oxfmt --check`.

## [0.3.7] - 2026-06-15

### Fixed
Expand Down
51 changes: 51 additions & 0 deletions apps/extension/.oxlintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
{
"$schema": "../../node_modules/oxlint/configuration_schema.json",
"options": {
"typeAware": true
},
"env": {
"browser": true,
"webextensions": true
},
"categories": {
"correctness": "error"
},
"ignorePatterns": ["coverage/**", "dist/**", "node_modules/**", "test/fixtures/**"],
"rules": {
"typescript/consistent-type-imports": ["error", { "prefer": "type-imports" }],
"typescript/no-floating-promises": "error",
"typescript/no-misused-promises": "error",
"typescript/no-unnecessary-type-assertion": "error",
"typescript/no-unsafe-assignment": "error",
"typescript/no-unsafe-member-access": "error",
"typescript/no-unsafe-return": "error"
},
"overrides": [
{
"files": ["*.config.mjs", "scripts/**/*.mjs"],
"env": {
"node": true
},
"rules": {
"typescript/await-thenable": "off",
"typescript/no-floating-promises": "off",
"typescript/no-misused-promises": "off",
"typescript/no-unnecessary-type-assertion": "off",
"typescript/require-await": "off",
"typescript/require-array-sort-compare": "off",
"typescript/no-unsafe-assignment": "off",
"typescript/no-unsafe-member-access": "off",
"typescript/no-unsafe-return": "off"
}
},
{
"files": ["src/**/*.test.ts", "test/**/*.ts"],
"env": {
"node": true
},
"rules": {
"typescript/no-misused-spread": "off"
}
}
]
}
60 changes: 0 additions & 60 deletions apps/extension/eslint.config.mjs

This file was deleted.

Loading