-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.eslintrc.json
38 lines (38 loc) · 1.16 KB
/
.eslintrc.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint", "prettier"],
"extends": [
"next",
"next/core-web-vitals",
"airbnb",
"airbnb-typescript",
"plugin:prettier/recommended"
],
"parserOptions": {
"project": "./tsconfig.json"
},
"rules": {
"@typescript-eslint/no-shadow": "off",
"@typescript-eslint/naming-convention": "off",
"@typescript-eslint/no-unused-vars": "off",
"@next/next/no-page-custom-font": "off",
"import/extensions": "off",
"react/style-prop-object": "off",
"react/require-default-props": "off",
"react/react-in-jsx-scope": "off",
"react/no-unescaped-entities": "off",
"react/jsx-filename-extension": [1, { "extensions": [".ts", ".tsx"] }],
"import/prefer-default-export": "off",
"react/prop-types": "off", //배포시 오류때문에 추가
"no-console": "off", //배포시 오류때문에 추가
"@next/next/no-img-element": "off", //배포시 오류때문에 추가, img태그 사용 가능하게
"prettier/prettier": [
"error",
{
"endOfLine": "auto"
}
]
},
"ignorePatterns": ["next.config.mjs"]
}