forked from Between-Departments/dev-FE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.cjs
29 lines (29 loc) · 1.11 KB
/
.eslintrc.cjs
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
module.exports = {
root: true,
env: { browser: true, es2020: true },
// ESLint 규칙 확장 설정 (기본 규칙, 리액트 및 타입스크립트 규칙 확장)
extends: [
'eslint:recommended',
'plugin:react/recommended',
'plugin:react-hooks/recommended',
'plugin:@typescript-eslint/recommended',
'prettier', // Prettier 규칙 적용 (충돌시 Prettier 우선)
],
ignorePatterns: ['dist', '.eslintrc.cjs', 'jest.config.cjs'],
parser: '@typescript-eslint/parser',
// 파서 옵션 설정
parserOptions: {
ecmaFeatures: {
jsx: true, // JSX 문법 파싱 가능 여부
},
ecmaVersion: 'latest', // 사용할 ECMAScript 버전
sourceType: 'module', // 모듈 형식 사용
},
plugins: ['react-refresh', 'react', 'react-hooks', '@typescript-eslint', 'prettier'],
rules: {
'react-refresh/only-export-components': ['warn', { allowConstantExport: true }],
'no-var': 'error', // var 키워드 사용 금지
'require-await': 'error', // async 함수 내부에 await 키워드가 없으면 오류 발생
eqeqeq: 'warn', // ==, != 대신에 ===, !== 사용
},
};