We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 541b278 commit b0fd85bCopy full SHA for b0fd85b
.eslintrc.json
@@ -1,3 +1,9 @@
1
{
2
- "extends": ["next/core-web-vitals", "next/typescript"]
+ "extends": [
3
+ "next/core-web-vitals",
4
+ "plugin:prettier/recommended" // Prettier와 충돌 방지
5
+ ],
6
+ "rules": {
7
+ "prettier/prettier": ["error"] // Prettier의 규칙을 ESLint가 오류로 처리
8
+ }
9
}
.prettierrc
@@ -0,0 +1,9 @@
+{
+ "semi": true,
+ "singleQuote": false,
+ "tabWidth": 2,
+ "trailingComma": "es5",
+ "printWidth": 80,
+ "arrowParens": "always",
+ "endOfLine": "auto"
+}
0 commit comments