forked from sprint8team6/team-project1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
27 lines (27 loc) · 1.3 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
{
"extends": ["airbnb", "plugin:prettier/recommended"],
"plugins": ["prettier"],
"env": {
"browser": true,
"es2021": true
},
"parserOptions": {
"ecmaVersion": 2021, // 최신 ECMAScript 2021 구문 지원
"sourceType": "module",
"ecmaFeatures": {
"jsx": true // JSX 지원
}
},
"rules": {
// 필요에 따라 추가 규칙을 설정할 수 있습니다.
"prettier/prettier": ["error", { "endOfLine": "auto" }],
"react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }],
"import/no-unresolved": "off", // 존재하지 않는 모듈 검사 (Webpack(alias path)를 사용중이므로 예외처리)
"react/react-in-jsx-scope": "off", // React 17+ 에서는 알아서 import react from 'react' 를 해줍니다
"no-unused-vars": "off", // 사용하지 않는 변수 작성에 대한 설정
"react/jsx-props-no-spreading": "off", // {...props} 프롭스에 대해 spreading 설정
"react/function-component-definition": "off", // React 컴포넌트를 함수 선언 강제
"react/require-default-props": "off", // props 기본값 설정이 복잡해짐
"no-console": ["error", { "allow": ["warn", "error"] }] // api등 사용에 있어서 warn과 error가 필요하고, 디버깅 목적으로도 필요
}
}