Skip to content

Commit

Permalink
Update ignore rules for deno
Browse files Browse the repository at this point in the history
  • Loading branch information
redabacha committed Oct 9, 2024
1 parent 0795f97 commit 4f728c9
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
1 change: 0 additions & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ pnpm-lock.yaml
# Deno
integration/helpers/deno-template
packages/remix-deno
templates/deno

packages/remix-dev/config/defaults
templates/remix-tutorial/app/data.ts
Expand Down
1 change: 0 additions & 1 deletion templates/.eslintignore

This file was deleted.

1 change: 1 addition & 0 deletions templates/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ package-lock.json
yarn.lock
pnpm-lock.yaml
pnpm-lock.yml
deno.lock
3 changes: 2 additions & 1 deletion templates/deno/app/entry.server.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
* For more information, see https://remix.run/file-conventions/entry.server
*/

import { RemixServer } from "@remix-run/react";
import type { AppLoadContext, EntryContext } from "@remix-run/server-runtime";
import { RemixServer } from "@remix-run/react";
import { isbot } from "isbot";
import { renderToReadableStream } from "react-dom/server.browser";

Expand All @@ -18,6 +18,7 @@ export default async function handleRequest(
remixContext: EntryContext,
// This is ignored so we can keep it in the template for visibility. Feel
// free to delete this parameter in your app if you're not using it!
// eslint-disable-next-line @typescript-eslint/no-unused-vars
loadContext: AppLoadContext
) {
const controller = new AbortController();
Expand Down

0 comments on commit 4f728c9

Please sign in to comment.