Skip to content

Commit

Permalink
fix: skip lint
Browse files Browse the repository at this point in the history
  • Loading branch information
9renpoto committed Feb 1, 2024
1 parent 1c0ec15 commit 2d2d5fe
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions __tests__/Header.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import { Header } from "../components/Header.tsx";

describe("Header", () => {
beforeEach(() => {
// deno-lint-ignore no-window
window.document = new DOMParser().parseFromString(
"",
"text/html",
Expand Down
2 changes: 1 addition & 1 deletion __tests__/deps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
/// <reference lib="dom.asynciterable" />

Check warning on line 4 in __tests__/deps.ts

View workflow job for this annotation

GitHub Actions / spellcheck

Unknown word (asynciterable)
/// <reference lib="deno.ns" />

export { DOMParser } from "https://deno.land/x/[email protected].37/deno-dom-wasm.ts";
export { DOMParser } from "https://deno.land/x/[email protected].45/deno-dom-wasm.ts";
export { render } from "https://esm.sh/@testing-library/[email protected]";
import "npm:textlint";

Check warning on line 9 in __tests__/deps.ts

View workflow job for this annotation

GitHub Actions / spellcheck

Unknown word (textlint)
import "npm:@9renpoto/textlint-config-ja";

Check warning on line 10 in __tests__/deps.ts

View workflow job for this annotation

GitHub Actions / spellcheck

Unknown word (textlint)
1 change: 1 addition & 0 deletions __tests__/index.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import { PostCard } from "../routes/index.tsx";

describe("PostCard", () => {
beforeEach(() => {
// deno-lint-ignore no-window
window.document = new DOMParser().parseFromString(
"",
"text/html",
Expand Down

0 comments on commit 2d2d5fe

Please sign in to comment.