-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.json
49 lines (49 loc) · 1.37 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
{
"extends": [
"next/core-web-vitals",
"airbnb",
"airbnb-typescript",
"prettier",
"plugin:storybook/recommended"
],
"parserOptions": {
"project": "./tsconfig.json"
},
"rules": {
// react import 없이 사용
"react/react-in-jsx-scope": "off",
// storybook 개발 의존성에 포함된 패키지 import 에러 x
"import/no-extraneous-dependencies": [
"error",
{
"devDependencies": [
"**/*.stories.tsx",
"**/test/**", // 테스트 폴더
"**/scripts/**", // 스크립트 폴더
"**/*.test.js", // 테스트 파일
"**/*.spec.js" // 테스트 파일
]
}
],
"react/function-component-definition": [
"off",
{
"namedComponents": "function-declaration",
"unnamedComponents": "function-expression"
}
],
// props를 직접적으로 spread 하는 것
"react/jsx-props-no-spreading": "off",
// 배열에 key로 index 사용
"react/no-array-index-key": "off",
// 단일 export 내보내기 사용
"import/prefer-default-export": "off",
// click event key event 끔
"jsx-a11y/click-events-have-key-events": "off",
"jsx-a11y/no-static-element-interactions": "off",
"import/no-named-as-default": "off",
"import/no-cycle": "off",
"arrow-body-style": "off",
"no-else-return": "off"
}
}