Skip to content

Commit 4319a75

Browse files
fix lint errors
1 parent 6cb47a8 commit 4319a75

File tree

3 files changed

+8
-19
lines changed

3 files changed

+8
-19
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
/** @type {import('eslint').Linter.Config} */
22
module.exports = {
3-
extends: ["@remix-run/eslint-config", "@remix-run/eslint-config/node"],
3+
extends: ['@remix-run/eslint-config', '@remix-run/eslint-config/node'],
44
};

packages/e2e-tests/test-applications/create-remix-app/app/routes/_index.tsx

Lines changed: 5 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,21 @@
1-
import type { V2_MetaFunction } from "@remix-run/node";
1+
import type { V2_MetaFunction } from '@remix-run/node';
22

33
export const meta: V2_MetaFunction = () => {
4-
return [
5-
{ title: "New Remix App" },
6-
{ name: "description", content: "Welcome to Remix!" },
7-
];
4+
return [{ title: 'New Remix App' }, { name: 'description', content: 'Welcome to Remix!' }];
85
};
96

107
export default function Index() {
118
return (
12-
<div style={{ fontFamily: "system-ui, sans-serif", lineHeight: "1.8" }}>
9+
<div style={{ fontFamily: 'system-ui, sans-serif', lineHeight: '1.8' }}>
1310
<h1>Welcome to Remix</h1>
1411
<ul>
1512
<li>
16-
<a
17-
target="_blank"
18-
href="https://remix.run/tutorials/blog"
19-
rel="noreferrer"
20-
>
13+
<a target="_blank" href="https://remix.run/tutorials/blog" rel="noreferrer">
2114
15m Quickstart Blog Tutorial
2215
</a>
2316
</li>
2417
<li>
25-
<a
26-
target="_blank"
27-
href="https://remix.run/tutorials/jokes"
28-
rel="noreferrer"
29-
>
18+
<a target="_blank" href="https://remix.run/tutorials/jokes" rel="noreferrer">
3019
Deep Dive Jokes App Tutorial
3120
</a>
3221
</li>

packages/e2e-tests/test-applications/create-remix-app/remix.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
/** @type {import('@remix-run/dev').AppConfig} */
22
module.exports = {
3-
ignoredRouteFiles: ["**/.*"],
3+
ignoredRouteFiles: ['**/.*'],
44
// appDirectory: "app",
55
// assetsBuildDirectory: "public/build",
66
// serverBuildPath: "build/index.js",
77
// publicPath: "/build/",
8-
serverModuleFormat: "cjs",
8+
serverModuleFormat: 'cjs',
99
future: {
1010
v2_errorBoundary: true,
1111
v2_meta: true,

0 commit comments

Comments
 (0)