-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.json
54 lines (50 loc) · 1.51 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
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
{
"parser": "@typescript-eslint/parser",
"extends": ["next/core-web-vitals", "prettier"],
"plugins": ["simple-import-sort", "unused-imports", "@typescript-eslint"],
"rules": {
// import 구문 정렬 규칙을 설정합니다
"simple-import-sort/imports": [
"error",
{
"groups": [
["^react", "^next", "^@?\\w"],
["^app/", "^src/", "public/"],
[
"^\\.\\.(?!/|$)",
"^\\.\\./?$",
"^\\./(?=.*/)(?!/?$)",
"^\\.(?!/?$)",
"^\\./?$"
],
["^\\.css$"]
]
}
],
// export 구문 정렬 규칙을 설정합니다
"simple-import-sort/exports": "error",
// 사용하지 않는 import 구문을 찾아 에러를 반환합니다
"unused-imports/no-unused-imports": "error",
// 사용하지 않는 변수를 찾아 경고를 반환합니다
// 단, 변수명이 _로 시작하는 경우 제외합니다
"unused-imports/no-unused-vars": [
"warn",
{
"vars": "all",
"varsIgnorePattern": "^_",
"args": "after-used",
"argsIgnorePattern": "^_"
}
],
// TypeScript의 type import를 강제합니다
// 예: import type { User } from './types'
// 타입과 값을 명확히 구분하고 번들 크기를 최적화하는데 도움이 됩니다!
"@typescript-eslint/consistent-type-imports": [
"error",
{
"prefer": "type-imports",
"fixStyle": "inline-type-imports"
}
]
}
}