File tree Expand file tree Collapse file tree 3 files changed +16
-10
lines changed
Expand file tree Collapse file tree 3 files changed +16
-10
lines changed Original file line number Diff line number Diff line change @@ -18,5 +18,11 @@ module.exports = {
1818 sourceType : "module" ,
1919 } ,
2020 plugins : [ "react" , "@typescript-eslint" , "prettier" ] ,
21- rules : { } ,
21+ rules : {
22+ "react/jsx-uses-react" : "off" ,
23+ "react/react-in-jsx-scope" : "off" ,
24+ "react/prop-types" : "off" ,
25+ "react/require-default-props" : "off" ,
26+ "@typescript-eslint/explicit-module-boundary-types" : "off" ,
27+ } ,
2228} ;
Original file line number Diff line number Diff line change 1- import ' ../styles/globals.css'
1+ import " ../styles/globals.css" ;
22
33function MyApp ( { Component, pageProps } ) {
4- return < Component { ...pageProps } />
4+ return < Component { ...pageProps } /> ;
55}
66
7- export default MyApp
7+ export default MyApp ;
Original file line number Diff line number Diff line change 1- import Head from ' next/head'
2- import Image from ' next/image'
3- import styles from ' ../styles/Home.module.css'
1+ import Head from " next/head" ;
2+ import Image from " next/image" ;
3+ import styles from " ../styles/Home.module.css" ;
44
55export default function Home ( ) {
66 return (
@@ -17,7 +17,7 @@ export default function Home() {
1717 </ h1 >
1818
1919 < p className = { styles . description } >
20- Get started by editing{ ' ' }
20+ Get started by editing{ " " }
2121 < code className = { styles . code } > pages/index.js</ code >
2222 </ p >
2323
@@ -58,12 +58,12 @@ export default function Home() {
5858 target = "_blank"
5959 rel = "noopener noreferrer"
6060 >
61- Powered by{ ' ' }
61+ Powered by{ " " }
6262 < span className = { styles . logo } >
6363 < Image src = "/vercel.svg" alt = "Vercel Logo" width = { 72 } height = { 16 } />
6464 </ span >
6565 </ a >
6666 </ footer >
6767 </ div >
68- )
68+ ) ;
6969}
You can’t perform that action at this time.
0 commit comments