-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.cjs
75 lines (75 loc) · 2.35 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
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
73
74
75
module.exports = {
root: true,
env: { browser: true, es2020: true },
extends: [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:react-hooks/recommended",
"plugin:storybook/recommended",
"airbnb", // Airbnb 스타일 가이드 추가
"airbnb-typescript", // TypeScript와 함께 사용
"plugin:prettier/recommended", // Prettier와의 통합
],
parserOptions: {
project: "./tsconfig.json",
},
ignorePatterns: ["dist", ".eslintrc.cjs", "firebase-messaging-sw.js"],
parser: "@typescript-eslint/parser",
plugins: [
"react-refresh",
"@typescript-eslint", // TypeScript ESLint 플러그인
],
rules: {
"react-refresh/only-export-components": [
"warn",
{ allowConstantExport: true },
],
"prettier/prettier": "warn", // Prettier 관련 오류를 ESLint 경고로 표시
"react/react-in-jsx-scope": "off", // React 17 이상에서는 필요 없음
"react/function-component-definition": "off", // 화살표 함수 사용 허용
"import/extensions": "off",
"react/require-default-props": "off",
"react/prop-types": "off",
"no-console": "off",
"jsx-a11y/no-noninteractive-element-interactions": "off",
"react/no-unknown-property": "off",
"react/jsx-props-no-spreading": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/naming-convention": "off",
"@typescript-eslint/no-unused-vars": "off",
"jsx-a11y/click-events-have-key-events": "off",
"no-underscore-dangle": "off",
"no-alert": "off",
"react-hooks/exhaustive-deps": "off",
"react/no-array-index-key": "off",
"no-nested-ternary": "off",
"@typescript-eslint/no-use-before-define": "off",
"react/jsx-no-constructed-context-values": "off",
"import/prefer-default-export": "off",
"@typescript-eslint/no-unused-expressions": "off",
"import/no-extraneous-dependencies": [
"error",
{
devDependencies: [
"**/src/api/mocks/**", // msw 관련 파일 예외 처리
],
},
],
},
overrides: [
{
files: ["vite.config.ts", "public/mockServiceWorker.js"],
rules: {
"@typescript-eslint/no-var-requires": "off",
},
},
],
settings: {
node: {
allowModules: ["react-cookie"],
},
react: {
version: "detect", // React 버전 자동 감지
},
},
};