-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.json
109 lines (109 loc) · 3.14 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"env": {
// 전역 변수 사용을 정의합니다. 추가하지 않으면 ESLint 규칙에 걸리게 됩니다.
"browser": true,
"es6": true,
"node": true,
"jest": true
},
"ignorePatterns": [
"node_modules/",
".pnp.cjs",
".pnp.loader.cjs",
"public/"
],
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"plugin:jsx-a11y/recommended",
"plugin:react/jsx-runtime",
"plugin:@next/next/recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@tanstack/eslint-plugin-query/recommended",
"plugin:prettier/recommended"
],
"parser": "@typescript-eslint/parser", // ESLint 파서를 지정합니다.
"parserOptions": {
"ecmaFeatures": {
"jsx": true // JSX를 파싱할 수 있습니다.
},
"ecmaVersion": "latest", // Modern ECMAScript를 파싱할 수 있습니다.
"sourceType": "module" // import, export를 사용할 수 있습니다.
},
"plugins": [
"react",
"@typescript-eslint",
"@tanstack/query",
"prettier",
"import"
],
"overrides": [
{
"files": [
"src/hooks/**/**/*.test.ts?(x)"
],
"rules": {
"react-hooks/rules-of-hooks": "off"
}
}
],
"rules": {
"no-useless-catch": "off",
"no-use-before-define": "off",
"react/function-component-definition": [
2,
{
"namedComponents": "arrow-function"
}
],
"@typescript-eslint/no-explicit-any": "error",
// undefined로 확인되는 값에서 optional chanining에 대한 경고를 활성화한다(에러x)
"no-unsafe-optional-chaining": 1,
// camelCase를 강제합니다.
"camelcase": [
"error",
{ "properties": "never", "ignoreDestructuring": false }
],
// 사용하지 않는 변수는 에러를 발생시킵니다.
"no-unused-vars": ["error", { "args": "none" }],
// import 경로가 잘못된 경우 경고를 활성화합니다.
"import/no-unresolved": ["error", { "ignore": ["^@/"] }],
"@typescript-eslint/consistent-type-imports": [
"error",
{
"prefer": "type-imports",
"disallowTypeAnnotations": false
}
],
// 일관된 화살표 함수 괄호: 화살표 함수에 대해 일관적인 괄호 사용을 적용합니다.
"arrow-parens": ["error", "always"],
// import 순서 규칙
"import/order": [
"error",
{
"groups": ["builtin", "external", ["parent", "sibling"], "index"],
"pathGroups": [
{
"pattern": "angular",
"group": "external",
"position": "before"
}
],
"alphabetize": {
"order": "asc",
"caseInsensitive": true
},
"newlines-between": "always"
}
],
// 'React' must be in scope when using JSX 에러 해결 (Next.js)
"react/react-in-jsx-scope": "off",
// ts파일에서 tsx구문 허용 (Next.js)
"react/jsx-filename-extension": [1, { "extensions": [".ts", ".tsx"] }]
},
"settings": {
"react": {
"version": "detect" // 현재 사용하고 있는 react 버전을 eslint-plugin-react가 자동으로 감지합니다.
}
}
}