-
Notifications
You must be signed in to change notification settings - Fork 2
/
.eslintrc.json
53 lines (53 loc) · 1.64 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
{
"env": {
"browser": true,
"es6": true,
"node": true
},
"extends": ["airbnb", "plugin:prettier/recommended"],
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 2020,
"sourceType": "module"
},
"plugins": ["react", "prettier"],
"rules": {
// var 금지
"no-var": "warn",
// 일치 연산자 사용 필수
"eqeqeq": "warn",
// 사용하지 않는 변수 금지
"no-unused-vars": "warn",
// 컴포넌트 이름은 PascalCase로
"react/jsx-pascal-case": "warn",
// 반복문으로 생성하는 요소에 key 강제
"react/jsx-key": "warn",
// [error] Delete `␍` prettier/prettier
"prettier/prettier": ["error", { "endOfLine": "auto" }],
// [error] Function component is not a function declaration
"react/function-component-definition": [2, { "namedComponents": ["arrow-function", "function-declaration"] }],
"react/react-in-jsx-scope": 0,
"react/prefer-stateless-function": 0,
"react/jsx-filename-extension": 0,
"react/jsx-one-expression-per-line": 0,
"no-nested-ternary": 0,
// [error] missing in props validation
"react/prop-types": "off",
// [error] Curly braces are unnecessary here
"react/jsx-curly-brace-presence": ["warn", { "props": "always", "children": "always" }],
// [error] Prop spreading is forbidden
"react/jsx-props-no-spreading": "off",
// 파일의 경로가 틀렸는지 확인하는 옵션 false
"import/no-unresolved": ["error", { "caseSensitive": false }]
},
// 절대경로 설정
"settings": {
"import/resolver": {
"node": {
"paths": ["src"]
}
}
}
}