-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
43 lines (42 loc) · 1.06 KB
/
.eslintrc.js
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
module.exports = {
parser: "@typescript-eslint/parser", // 파서를 TypeScript 파서로 설정
parserOptions: {
project: "./tsconfig.json", // tsconfig 파일 경로 설정
tsconfigRootDir: __dirname, // tsconfig 루트 디렉토리 설정
sourceType: "module", // 모듈 형식 설정
},
extends: [
"airbnb",
"airbnb-typescript",
"plugin:@typescript-eslint/recommended",
"next/core-web-vitals",
"next/typescript",
"prettier",
"plugin:storybook/recommended",
],
plugins: [
"@typescript-eslint", // TypeScript 관련 ESLint 플러그인
],
rules: {
"import/no-extraneous-dependencies": "off",
"react/require-default-props": [
"warn",
{
ignoreFunctionalComponents: true,
},
],
},
overrides: [
{
files: [
"src/components/**/*.js",
"src/components/**/*.ts",
"src/components/**/*.tsx",
], // components 디렉토리의 파일에만 적용
rules: {
"import/no-cycle": "off",
"import/named": "off",
},
},
],
};