-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.eslintrc.json
72 lines (72 loc) · 2.56 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
{
"env": {
"browser": true,
"es2021": true
},
"extends": [
"react-app",
"plugin:prettier/recommended",
"plugin:react/recommended", // eslint-plugin-react 설치한 경우
"plugin:jsx-a11y/recommended", // eslint-plugin-jsx-a11y 설치한 경우
"plugin:import/errors", // eslint-plugin-import 설치한 경우
"plugin:import/warnings", // eslint-plugin-import 설치한 경우
"airbnb",
"prettier",
"prettier/prettier"
],
"overrides": [],
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module",
"project": "./tsconfig.json"
},
"plugins": ["react", "@typescript-eslint", "react-hooks"],
//??
"rules": {
"no-unused-vars": "off",
"import/no-extraneous-dependencies": [
"error",
{
"devDependencies": false,
"optionalDependencies": false,
"peerDependencies": true
}
], // 모듈이 package.json의 dependencies 또는 devDependencies에 명시되어 있지 않을 때 발생
//??
"import/prefer-default-export": "off",
"linebreak-style": 0, // 운영체제마다 개행차이로 생기는 오류
"arrow-body-style": "off", // array function 규칙 오프
"react/self-closing-comp": "off", // 셀프 클로징 오프
"prettier/prettier": ["error", { "endOfLine": "auto", "useTabs": false }], // eslint-config-prettier에서 제공하는 설정을 활성화해서, Prettier와 충돌하는 몇가지 ESlint 규칙을 무시
"prefer-arrow-callback": "off", // eslint-plugin-prettier과 충돌이 일어나는 ESLint core 의 규칙을 비활성화한다.
"react/function-component-definition": [
2,
{ "namedComponents": ["arrow-function", "function-declaration"] }
], // 함수형 컴포넌트 방식에 화살표 함수도 가능하게 하는 규칙 추가
"@typescript-eslint/explicit-function-return-type": "off", // 함수형 컴포넌트의 리턴 타입에 대한 규칙 추가
"react-hooks/rules-of-hooks": "error",
"react-hooks/exhaustive-deps": "warn",
"react/jsx-filename-extension": ["warn", { "extensions": [".tsx"] }],
"react/no-unknown-property": ["error", { "ignore": ["css"] }],
"react/require-default-props": "warn",
"import/extensions": [
"error",
"ignorePackages",
{
"js": "never",
"jsx": "never",
"ts": "never",
"tsx": "never",
"json": "never"
}
]
},
"settings": {
"import/resolver": {
"node": {
"extensions": [".js", ".jsx", ".ts", ".tsx"],
"paths": ["node_modules", "src"]
}
}
}
}