File tree 4 files changed +8
-7
lines changed
4 files changed +8
-7
lines changed Original file line number Diff line number Diff line change 4
4
"license" : " MIT" ,
5
5
"scripts" : {
6
6
"format" : " prettier --write . && yarn lint:fix" ,
7
- "lint" : " eslint ." ,
7
+ "lint" : " eslint --no-eslintrc --config .eslintrc.js ." ,
8
8
"lint:fix" : " yarn lint --fix"
9
9
},
10
10
"devDependencies" : {
Original file line number Diff line number Diff line change @@ -92,7 +92,7 @@ export default function Examples() {
92
92
< fieldset >
93
93
< label htmlFor = "terms" >
94
94
< input type = "checkbox" role = "switch" id = "terms" name = "terms" /> I
95
- agree to the < a href = "#" > Privacy Policy</ a >
95
+ agree to the < a href = "#privacy-policy " > Privacy Policy</ a >
96
96
</ label >
97
97
</ fieldset >
98
98
</ form >
@@ -125,15 +125,15 @@ export default function Examples() {
125
125
< h3 > Inline text elements</ h3 >
126
126
< div className = "grid" >
127
127
< p >
128
- < a href = "#" > Primary link</ a >
128
+ < a href = "#primary-link " > Primary link</ a >
129
129
</ p >
130
130
< p >
131
- < a href = "#" className = "secondary" >
131
+ < a href = "#secondary " className = "secondary" >
132
132
Secondary link
133
133
</ a >
134
134
</ p >
135
135
< p >
136
- < a href = "#" className = "contrast" >
136
+ < a href = "#contrast " className = "contrast" >
137
137
Contrast link
138
138
</ a >
139
139
</ p >
Original file line number Diff line number Diff line change
1
+ import { createServer } from "http" ;
2
+
1
3
import { createRequestHandler } from "@remix-run/express" ;
2
4
import compression from "compression" ;
3
5
import express from "express" ;
4
6
import morgan from "morgan" ;
5
- import { createServer } from "http" ;
6
7
import { Server } from "socket.io" ;
7
8
8
9
const viteDevServer =
Original file line number Diff line number Diff line change 1
- import { LinksFunction } from "@remix-run/node" ;
1
+ import type { LinksFunction } from "@remix-run/node" ;
2
2
import {
3
3
Links ,
4
4
Meta ,
You can’t perform that action at this time.
0 commit comments