Skip to content

Commit

Permalink
Fix : eslint prettier 설정 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
LikeFireAndSky committed Nov 7, 2023
1 parent a805b3a commit 3133296
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
"extends": [
"next/core-web-vitals",
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
"plugin:@typescript-eslint/recommended",
"prettier"
],
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint"],
Expand Down
5 changes: 1 addition & 4 deletions Components/Button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,7 @@ const HomeButton = ({ buttonName }: ButtonProps) => {
};

return (
<Button
className=" bg-primary"
onClick={handleClick}
>
<Button className=" bg-primary" onClick={handleClick}>
{buttonName}
</Button>
);
Expand Down
13 changes: 13 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
"autoprefixer": "^10.0.1",
"eslint": "^8",
"eslint-config-next": "14.0.1",
"eslint-config-prettier": "^9.0.0",
"husky": "^8.0.0",
"postcss": "^8",
"tailwindcss": "^3.3.0",
Expand Down

0 comments on commit 3133296

Please sign in to comment.