-
Notifications
You must be signed in to change notification settings - Fork 2
/
.eslintrc.json
94 lines (94 loc) · 3.7 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./tsconfig.json",
"sourceType": "module"
},
"env": {
"node": true,
"browser": true,
"es6": true
},
"extends": [
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:react-hooks/recommended",
"plugin:react/recommended",
"plugin:jsx-a11y/recommended",
"plugin:import/recommended",
"eslint:recommended",
"next",
"plugin:prettier/recommended"
],
"rules": {
"react/no-array-index-key": "error",
"react/destructuring-assignment": "error",
"react/function-component-definition": ["warn", {
"namedComponents": "function-declaration"
}],
"react/self-closing-comp": ["error", {
"component": true,
"html": true
}],
"react/jsx-boolean-value": "error",
"react/jsx-no-useless-fragment": "error",
"@typescript-eslint/array-type": ["warn", { "default": "array-simple" }], // 단순 타입이면 string[], 복합 타입이면 array<string | number>
"@typescript-eslint/consistent-type-definitions": ["error", "interface"], // 객체에 type 대신 interface 사용
"@typescript-eslint/promise-function-async": [ // promise를 리턴하면 async 추가
"error",
{
"checkArrowFunctions": true,
"checkFunctionDeclarations": true,
"checkFunctionExpressions": true,
"checkMethodDeclarations": true
}
],
"react/boolean-prop-naming": ["error", { "rule": "^(is|has)[A-Z]([A-Za-z0-9]?)+" }], // boolean에 is 또는 has 사용
"react-hooks/rules-of-hooks": "error", // hook 위치 확인
"react-hooks/exhaustive-deps": "warn", // useEffect dependencies 확인
"import/no-unresolved": "error", // import 제대로 됐는지 확인
"import/no-duplicates": "error", // 중복 import 제거
"default-case": "error", // switch에 default 없으면 에러
"eqeqeq": "error", // == 및 != 사용 금지 -> === 및 !== 사용
"no-alert": "error", // alert, prompt, confirm 사용 금지
"no-delete-var": "error", // delete 및 var 사용 금지
"no-useless-return": "error", // 쓸데없는 return 사용 금지
"prefer-const": "error", // 가능한 모든 경우에 const 사용
"@typescript-eslint/no-unused-vars": ["error"],
/* 포맷팅 */
"simple-import-sort/imports": "error", // import 정렬
"simple-import-sort/exports": "error", // export 정렬
"import/newline-after-import": "error", // import 다음에 빈줄 추가
"no-multiple-empty-lines": ["error", { "max": 1 }], // 빈줄 최대 1줄 허용
"comma-dangle": ["error", "always-multiline"], // 여러 줄일 때 항상 comma 추가
"quotes": ["error", "single"], // single quote만 사용
"arrow-body-style": ["error", "as-needed"], // 한 줄일 때는 {} 없이, 두 줄 이상이면 {} 포함
"func-style": ["error", "declaration", { "allowArrowFunctions": true }], // function 및 arrow function 사용
"no-else-return": "error", // if(cond) return a; else return b; 대신에 if(cond) return a; return b; 사용
"object-shorthand": ["error", "always"], // const obj = {a, b} 가능
"arrow-parens": ["error", "always"], // arrow-function 인자가 2개 이상이면 괄호 필수
"eol-last": ["error", "always"], // 파일 마지막에 빈줄 추가
"no-multi-spaces": "error", // 스페이스 여러개 금지
"prettier/prettier": ["error", { "endOfLine": "auto" }]
},
"plugins": [
"simple-import-sort",
"@typescript-eslint"
],
"globals": {
"React": "writable",
"JSX": true
},
"settings": {
"react": {
"version": "detect"
},
"import/parsers": {
"@typescript-eslint/parser": [
".ts",
".tsx",
".js"
]
}
}
}