diff --git a/.prettierrc b/.prettierrc index 81766c6..25a3a61 100644 --- a/.prettierrc +++ b/.prettierrc @@ -1,5 +1,4 @@ { - "parser": "@typescript-eslint/parser", "extends": [ "plugin:@typescript-eslint/recommended", "plugin:react/recommended", diff --git a/.vscode/extensions.json b/.vscode/extensions.json index 909c97b..c99c624 100644 --- a/.vscode/extensions.json +++ b/.vscode/extensions.json @@ -1,6 +1,6 @@ { "recommendations": [ "dbaeumer.vscode-eslint", - "rvest.vs-code-prettier-eslint" + "esbenp.prettier-vscode" ] } \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json index 0a7382a..b486899 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -11,6 +11,8 @@ "editor.defaultFormatter": "esbenp.prettier-vscode", "typescript.updateImportsOnFileMove.enabled": "always", "editor.codeActionsOnSave": { - "source.fixAll.eslint": true + "source.fixAll.eslint": true, + "source.fixAll.stylelint": true, + "eslint.autoFixOnSave": true, } } \ No newline at end of file diff --git a/app/layout.tsx b/app/layout.tsx index f77f0af..6b6e9ea 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -7,7 +7,7 @@ export default function RootLayout({ }) { return ( - + {children} ); diff --git a/app/page.tsx b/app/page.tsx index f889864..41f5098 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -7,7 +7,7 @@ function Index() { Hello, Next.js 13! -
+
222
diff --git a/package.json b/package.json index 34ba29b..d477c61 100644 --- a/package.json +++ b/package.json @@ -63,4 +63,4 @@ "ts-node": "^10.9.1", "typescript": "^4.8.4" } -} +} \ No newline at end of file