forked from DSLikelion10/LIKEFEST-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
98 lines (98 loc) · 3.73 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
{
"env": {
"browser": true,
"es2021": true,
"node": true,
"es6": true
},
"plugins": ["import", "react", "prettier", "react-hooks", "simple-import-sort"],
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"plugin:prettier/recommended",
"plugin:react-hooks/recommended",
"plugin:jsx-a11y/recommended"
],
"rules": {
"indent": ["off", 2, { "SwitchCase": 1 }], // 들여쓰기 몇 칸? 기본 2칸으로 하되, switch문에서는 1칸으로 지정
"quotes": ["off", "single"], // 쌍따옴표가 아닌 홑따옴표를 사용
"semi": ["error", "always"], // semi colon을 강제함
"no-multiple-empty-lines": ["error", { "max": 1, "maxEOF": 0 }],
"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 }], // 반점 앞 뒤 공백: 앞에는 없고, 뒤에는 있게
"eol-last": ["error", "always"], // line의 가장 마지막 줄에는 개행 넣기
"no-tabs": ["error", { "allowIndentationTabs": true }], // \t의 사용을 금지하고 tab키의 사용은 허용
"react-hooks/rules-of-hooks": "error", // Checks rules of Hooks
"react-hooks/exhaustive-deps": "off", // Checks effect dependencies
"react/react-in-jsx-scope": "off",
"react/prop-types": "off",
// "simple-import-sort/imports": "error", // import 정렬
"simple-import-sort/exports": "error", // export 정렬
"import/no-unresolved": "off",
"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개 이상이면 괄호 필수
"no-multi-spaces": "error", // 스페이스 여러개 금지
"import/order": [
"error",
{
"groups": ["builtin", "external", "internal", ["sibling", "parent", "index"], "type", "unknown"],
"pathGroups": [
{
"pattern": "{react*,react*/**}",
"group": "external",
"position": "before"
},
{
"pattern": "@saas-fe/**/*.style",
"group": "unknown"
},
{
"pattern": "@pages/**/*.style",
"group": "unknown"
},
{
"pattern": "@components/**/*.style",
"group": "unknown"
},
{
"pattern": "./**/*.style",
"group": "unknown"
},
{
"pattern": "../**/*.style",
"group": "unknown"
},
{
"pattern": "*.style",
"group": "unknown"
}
],
"pathGroupsExcludedImportTypes": ["react", "unknown"],
"newlines-between": "always",
"alphabetize": {
"order": "asc",
"caseInsensitive": true
}
}
]
},
"settings": {
"react": {
"version": "detect"
}
},
"parser": "@babel/eslint-parser",
"parserOptions": {
"sourceType": "module",
"requireConfigFile": false,
"babelOptions": {
"presets": ["@babel/preset-react"]
}
}
}