Skip to content

Commit

Permalink
feat: deleate typescript-eslint/parser
Browse files Browse the repository at this point in the history
  • Loading branch information
nico1988 committed Feb 11, 2023
1 parent a7c4946 commit aa5ba28
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 6 deletions.
1 change: 0 additions & 1 deletion .prettierrc
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
{
"parser": "@typescript-eslint/parser",
"extends": [
"plugin:@typescript-eslint/recommended",
"plugin:react/recommended",
Expand Down
2 changes: 1 addition & 1 deletion .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"recommendations": [
"dbaeumer.vscode-eslint",
"rvest.vs-code-prettier-eslint"
"esbenp.prettier-vscode"
]
}
4 changes: 3 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -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,
}
}
2 changes: 1 addition & 1 deletion app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default function RootLayout({
}) {
return (
<html>
<head></head>
<head />
<body>{children}</body>
</html>
);
Expand Down
2 changes: 1 addition & 1 deletion app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ function Index() {
Hello, Next.js 13!
</button>

<div className="text-6xl text-[#fb0067]">
<div className="text-6xl text-[#fb0067] ">
222
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,4 +63,4 @@
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}
}

0 comments on commit aa5ba28

Please sign in to comment.