diff --git a/eslint.config.js b/eslint.config.js index 37abdf383..fb8747b6f 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -94,7 +94,7 @@ export default [ "warn", { default: ["field", "signature", "constructor", "method"] }, ], - // Allow explict type annotations for additional clarity. + // Allow explicit type annotations for additional clarity. "@typescript-eslint/no-inferrable-types": "off", "@typescript-eslint/no-invalid-void-type": ["warn"], // Disallow Unused Variables. diff --git a/src/views/repos/Patch.svelte b/src/views/repos/Patch.svelte index 997d429b4..fe7c5ec4a 100644 --- a/src/views/repos/Patch.svelte +++ b/src/views/repos/Patch.svelte @@ -108,7 +108,7 @@ node: baseUrl, patch: patch.id, } as const; - // For cleaner URLs, we omit the the revision part when we link to the + // For cleaner URLs, we omit the revision part when we link to the // latest revision. const latestRevisionId = patch.revisions[patch.revisions.length - 1].id; const revision = latestRevisionId === revisionId ? undefined : revisionId; diff --git a/tests/e2e/clipboard.spec.ts b/tests/e2e/clipboard.spec.ts index 1fe90b79f..aa0ffa06a 100644 --- a/tests/e2e/clipboard.spec.ts +++ b/tests/e2e/clipboard.spec.ts @@ -21,7 +21,7 @@ test("copy to clipboard", async ({ page, browserName, context }) => { if (browserName === "chromium") { await context.grantPermissions(["clipboard-read", "clipboard-write"]); } else if (browserName === "webkit") { - // We aren't able to programatically change the permissions in webkit. + // We aren't able to programmatically change the permissions in webkit. test.skip(); } diff --git a/tests/e2e/theme.spec.ts b/tests/e2e/theme.spec.ts index 8da9ff573..20fc227e4 100644 --- a/tests/e2e/theme.spec.ts +++ b/tests/e2e/theme.spec.ts @@ -14,7 +14,7 @@ test("default theme", async ({ page }) => { } }); -test("theme persistance", async ({ page }) => { +test("theme persistence", async ({ page }) => { await page.goto(sourceBrowsingFixture); await expect( page.getByRole("banner").getByRole("link", { name: "source-browsing" }),