-
Notifications
You must be signed in to change notification settings - Fork 6
/
.eslintrc.cjs
33 lines (23 loc) · 1.3 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
30
31
32
33
module.exports = {
root: true,
env: { browser: true, es2020: true }, // 브라우저 환경 및 ES2020 환경 설정
extends: [
"eslint:recommended", // ESLint의 기본 권장 규칙 사용
"plugin:@typescript-eslint/recommended" // TypeScript 관련 권장 규칙 사용
// "plugin:react-hooks/recommended" // React Hooks 규칙 사용
],
ignorePatterns: ["dist", ".eslintrc.cjs"], // ESLint 무시할 파일 또는 디렉토리 설정
parser: "@typescript-eslint/parser", // TypeScript 구문 분석기 사용
plugins: ["react-refresh", "html", "@typescript-eslint"], // TypeScript 플러그인 추가
rules: {
"react-refresh/only-export-components": ["warn", { allowConstantExport: true }], // React 컴포넌트는 오직 컴포넌트만 내보내야 합니다.
indent: ["error", 2, { SwitchCase: 1 }], // 들여쓰기 스타일 설정 (2칸 들여쓰기)
"@typescript-eslint/no-unused-vars": [
"error",
{ vars: "all", args: "after-used", ignoreRestSiblings: false }
], // TypeScript에서 사용하지 않는 변수를 검출합니다.
"no-empty": "warn", // 빈 블록문에 대한 경고 설정
semi: ["error", "always"], // 세미콜론(;) 사용 강제 설정
"@typescript-eslint/no-explicit-any": "off" // 'any' 타입 사용 허용
}
};