-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.json
115 lines (114 loc) · 3.58 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"root": true,
// 실행 환경 설정
"env": {
"browser": true,
"es2021": true,
"node": true,
"es6": true
},
"plugins": [
"react",
"react-hooks",
"@typescript-eslint",
"@typescript-eslint/eslint-plugin",
"simple-import-sort",
"jsx-a11y",
"prettier",
"import"
],
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:react-hooks/recommended",
"plugin:prettier/recommended",
"plugin:import/recommended",
"plugin:import/typescript",
"plugin:jsx-a11y/recommended"
],
"rules": {
//import React 오류 해결
"react/react-in-jsx-scope": "off",
// 들여쓰기 기본 2칸으로 하되, switch문에서는 1칸으로 지정
"indent": "off",
// 쌍따옴표가 아닌 홑따옴표를 사용
"quotes": ["off", "single"],
// semi-colon 강제함
"semi": ["error", "always"],
//공백 여러 줄 금지
"no-multiple-empty-lines": ["error", { "max": 1, "maxEOF": 0 }],
//스페이스 여러개 금지
"no-multi-spaces": "error",
// 두 줄 이상의 경우에는 후행 쉼표를 항상 사용, 한 개 일 때는 사용하지 않음
"comma-dangle": ["error", "always-multiline"],
// 객체 괄호 앞 뒤 공백 추가
"object-curly-spacing": ["error", "always"],
// 일반 괄호 앞 뒤 공백 추가
"space-in-parens": ["error", "never"],
// 대괄호 앞 뒤 공백 추가하지 않음
"computed-property-spacing": ["error", "never"],
// 반점 앞 뒤 공백: 앞에는 없고, 뒤에는 있게
"comma-spacing": ["error", { "before": false, "after": true }],
// line의 가장 마지막 줄에는 개행 넣기
"eol-last": ["error", "always"],
"react-hooks/rules-of-hooks": "error", // Checks rules of Hooks
"react-hooks/exhaustive-deps": "off", // Checks effect dependencies
// import React from "react" 필수 (단, 상위에 포함시 하위는 생략)
"react/jsx-uses-react": "error",
"react/jsx-uses-vars": "error",
//안 쓰는 변수들에 대해 경고 표시
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": "warn",
//console 포함될 때 경고
"no-console": "warn",
//label 태그와 input 태그 연결 여부
"jsx-a11y/label-has-associated-control": [ 2, {
"labelAttributes": ["htmlFor"]
}],
"import/order": [
"error",
{
"groups": ["builtin", "external", "parent", "sibling", "index"], // import 되는 순서 정의
"pathGroups": [
{
"pattern": "react*", // path가 react로 시작하면
"group": "external", // external 앞에
"position": "before"
}
],
"alphabetize": {
//group 내부에서 알파벳 오름차순으로 정렬
"order": "asc",
"caseInsensitive": true
},
// group들 사이마다 개행 적용 (group 내부에서 개행 적용 불가)
"newlines-between": "always"
}
]
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": "latest",
"sourceType": "module"
},
"settings": {
"import/resolver": {
"node": {
"moduleDirectory": ["node_modules", "src/"],
"extensions": [".js", ".jsx", ".ts", ".tsx", ".d.ts"]
},
"typescript": {}
},
"react": {
"version": "detect"
},
"import/parsers": {
"@typescript-eslint/parser": [".ts", ".tsx", ".js"]
}
}
}