Skip to content

Commit 82d2516

Browse files
author
gitgitWi
committed
Chore: 불필요한 ESLint 옵션 off
1 parent 4a7b727 commit 82d2516

File tree

3 files changed

+16
-10
lines changed

3 files changed

+16
-10
lines changed

.eslintrc.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff 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
};

pages/_app.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
import '../styles/globals.css'
1+
import "../styles/globals.css";
22

33
function MyApp({ Component, pageProps }) {
4-
return <Component {...pageProps} />
4+
return <Component {...pageProps} />;
55
}
66

7-
export default MyApp
7+
export default MyApp;

pages/index.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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

55
export 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
}

0 commit comments

Comments
 (0)