File tree Expand file tree Collapse file tree 4 files changed +8
-7
lines changed Expand file tree Collapse file tree 4 files changed +8
-7
lines changed Original file line number Diff line number Diff line change 44 "license" : " MIT" ,
55 "scripts" : {
66 "format" : " prettier --write . && yarn lint:fix" ,
7- "lint" : " eslint ." ,
7+ "lint" : " eslint --no-eslintrc --config .eslintrc.js ." ,
88 "lint:fix" : " yarn lint --fix"
99 },
1010 "devDependencies" : {
Original file line number Diff line number Diff line change @@ -92,7 +92,7 @@ export default function Examples() {
9292 < fieldset >
9393 < label htmlFor = "terms" >
9494 < 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 >
9696 </ label >
9797 </ fieldset >
9898 </ form >
@@ -125,15 +125,15 @@ export default function Examples() {
125125 < h3 > Inline text elements</ h3 >
126126 < div className = "grid" >
127127 < p >
128- < a href = "#" > Primary link</ a >
128+ < a href = "#primary-link " > Primary link</ a >
129129 </ p >
130130 < p >
131- < a href = "#" className = "secondary" >
131+ < a href = "#secondary " className = "secondary" >
132132 Secondary link
133133 </ a >
134134 </ p >
135135 < p >
136- < a href = "#" className = "contrast" >
136+ < a href = "#contrast " className = "contrast" >
137137 Contrast link
138138 </ a >
139139 </ p >
Original file line number Diff line number Diff line change 1+ import { createServer } from "http" ;
2+
13import { createRequestHandler } from "@remix-run/express" ;
24import compression from "compression" ;
35import express from "express" ;
46import morgan from "morgan" ;
5- import { createServer } from "http" ;
67import { Server } from "socket.io" ;
78
89const 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" ;
22import {
33 Links ,
44 Meta ,
You can’t perform that action at this time.
0 commit comments