-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.eslintrc.json
36 lines (34 loc) · 1.13 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
{
"env": {
"browser": true,
"es2021": true,
"node": true
},
"parser": "@typescript-eslint/parser",
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:react-hooks/recommended",
"plugin:react/recommended"
],
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module",
"requireConfigFile": false
},
"plugins": ["react", "@typescript-eslint", "import"],
"rules": {
"react/react-in-jsx-scope": "off",
"@typescript-eslint/no-unused-vars": "warn",
"react/no-unused-state": "error",
"no-unused-vars": "error",
"react/jsx-no-useless-fragment": "error", // 불필요한 fragment 금지
"react/destructuring-assignment": "error", // state, prop 등에 구조분해 할당 적용
"react-hooks/rules-of-hooks": "error",
"react-hooks/exhaustive-deps": "warn",
"array-callback-return": 0,
"react/jsx-pascal-case": "warn", // 컴포넌트 이름은 PascalCase로
"react/self-closing-comp": "warn", // 셀프 클로징 태그 가능하면 적용
"react/jsx-key": "warn" // 반복문으로 생성하는 요소에 key 강제
}
}