From d29dfbd2f8b5eefe983272a39ba9048d1e80a7dd Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=EC=9C=A4=EC=A4=80=EC=88=98?=
<99115509+hoheesu@users.noreply.github.com>
Date: Tue, 17 Dec 2024 16:05:57 +0900
Subject: [PATCH 1/7] =?UTF-8?q?test:=20=EB=B0=B0=ED=8F=AC=20cicd=ED=8C=8C?=
=?UTF-8?q?=EC=9D=B4=ED=94=84=EB=9D=BC=EC=9D=B8=20=EA=B5=AC=EC=B6=95=20?=
=?UTF-8?q?=ED=85=8C=EC=8A=A4=ED=8A=B8?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/App.tsx | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/App.tsx b/src/App.tsx
index dbac9a1..e9f490b 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -9,6 +9,7 @@ function App() {
+
>
);
From d555cc6d7c9947b84911371619833a306b7a1f32 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=EC=9C=A4=EC=A4=80=EC=88=98?=
<99115509+hoheesu@users.noreply.github.com>
Date: Tue, 17 Dec 2024 16:10:15 +0900
Subject: [PATCH 2/7] =?UTF-8?q?fix:=20=EB=B0=B0=ED=8F=AC=20=EC=97=90?=
=?UTF-8?q?=EB=9F=AC=20=EC=88=98=EC=A0=95?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
eslint.config.js | 1 +
1 file changed, 1 insertion(+)
diff --git a/eslint.config.js b/eslint.config.js
index 79a552e..29dea1c 100644
--- a/eslint.config.js
+++ b/eslint.config.js
@@ -23,6 +23,7 @@ export default tseslint.config(
"warn",
{ allowConstantExport: true },
],
+ "no-unused-vars": "off",
},
},
);
From 6b6b6b6d31454f2043bf15c993fbeb8ca4f91480 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=EC=9C=A4=EC=A4=80=EC=88=98?=
<99115509+hoheesu@users.noreply.github.com>
Date: Tue, 17 Dec 2024 16:12:52 +0900
Subject: [PATCH 3/7] =?UTF-8?q?fix:=20=EB=B0=B0=ED=8F=AC=20=EC=97=90?=
=?UTF-8?q?=EB=9F=AC=20=EC=88=98=EC=A0=95?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
eslint.config.js | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/eslint.config.js b/eslint.config.js
index 29dea1c..d794d24 100644
--- a/eslint.config.js
+++ b/eslint.config.js
@@ -23,7 +23,10 @@ export default tseslint.config(
"warn",
{ allowConstantExport: true },
],
- "no-unused-vars": "off",
+ "@typescript-eslint/no-unused-vars": [
+ "warn", // 경고로 설정 (에러가 아님)
+ { argsIgnorePattern: "^_" }, // "_"로 시작하는 변수는 무시
+ ],
},
},
);
From a5f3bf6dbd86e6471be58ceae168364a0e1a2246 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=EC=9C=A4=EC=A4=80=EC=88=98?=
<99115509+hoheesu@users.noreply.github.com>
Date: Tue, 17 Dec 2024 16:14:39 +0900
Subject: [PATCH 4/7] =?UTF-8?q?fix:=20=EB=B0=B0=ED=8F=AC=20=EC=97=90?=
=?UTF-8?q?=EB=9F=AC=20=EC=88=98=EC=A0=95?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
vite.config.ts | 12 ++++++++----
1 file changed, 8 insertions(+), 4 deletions(-)
diff --git a/vite.config.ts b/vite.config.ts
index 8b0f57b..2cdc337 100644
--- a/vite.config.ts
+++ b/vite.config.ts
@@ -1,7 +1,11 @@
-import { defineConfig } from 'vite'
-import react from '@vitejs/plugin-react'
+import { defineConfig } from "vite";
+import react from "@vitejs/plugin-react";
// https://vite.dev/config/
export default defineConfig({
- plugins: [react()],
-})
+ plugins: [
+ react({
+ jsxImportSource: "react", // React 자동 import 비활성화
+ }),
+ ],
+});
From a8a5043a26fd944ff16b612f30c257e7872967e5 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=EC=9C=A4=EC=A4=80=EC=88=98?=
<99115509+hoheesu@users.noreply.github.com>
Date: Tue, 17 Dec 2024 16:17:30 +0900
Subject: [PATCH 5/7] =?UTF-8?q?fix:=20=EB=B0=B0=ED=8F=AC=20=EC=97=90?=
=?UTF-8?q?=EB=9F=AC=20=EC=88=98=EC=A0=95?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
tsconfig.node.json | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/tsconfig.node.json b/tsconfig.node.json
index db0becc..f845868 100644
--- a/tsconfig.node.json
+++ b/tsconfig.node.json
@@ -15,10 +15,11 @@
/* Linting */
"strict": true,
- "noUnusedLocals": true,
- "noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
- "noUncheckedSideEffectImports": true
+ "noUncheckedSideEffectImports": true,
+ "noUnusedLocals": false, // 사용하지 않는 로컬 변수 검사 비활성화
+ "noUnusedParameters": false // 사용하지 않는 함수 매개변수 검사 비활성화
+ // "noUnusedImports": false // 사용하지 않는 import 검사 비활성화
},
"include": ["vite.config.ts"]
}
From 5b342b748fa7e45446381f1fdfcc3269217691c7 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=EC=9C=A4=EC=A4=80=EC=88=98?=
<99115509+hoheesu@users.noreply.github.com>
Date: Tue, 17 Dec 2024 16:20:52 +0900
Subject: [PATCH 6/7] =?UTF-8?q?fix:=20=EB=B0=B0=ED=8F=AC=20=EC=97=90?=
=?UTF-8?q?=EB=9F=AC=20=EC=88=98=EC=A0=95?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/components/layout/Footer.tsx | 2 --
src/components/layout/Header.tsx | 1 -
src/components/ui/AppButton.tsx | 2 +-
src/components/ui/AppInput.tsx | 2 +-
src/pages/Page1/Page1.tsx | 2 --
5 files changed, 2 insertions(+), 7 deletions(-)
diff --git a/src/components/layout/Footer.tsx b/src/components/layout/Footer.tsx
index 471026f..580dce9 100644
--- a/src/components/layout/Footer.tsx
+++ b/src/components/layout/Footer.tsx
@@ -1,5 +1,3 @@
-import React from "react";
-
export default function Footer() {
return
@2024 dicaprioCode
;
}
diff --git a/src/components/layout/Header.tsx b/src/components/layout/Header.tsx
index 5fd1f46..9e9e15b 100644
--- a/src/components/layout/Header.tsx
+++ b/src/components/layout/Header.tsx
@@ -1,4 +1,3 @@
-import React from "react";
import { NavLink } from "react-router-dom";
export default function Header() {
diff --git a/src/components/ui/AppButton.tsx b/src/components/ui/AppButton.tsx
index 55246d7..a0d2023 100644
--- a/src/components/ui/AppButton.tsx
+++ b/src/components/ui/AppButton.tsx
@@ -2,7 +2,7 @@ import { ReactNode } from "react";
import * as S from "./appButtonStyle";
export default function AppButton(
- children: ReactNode,
+ // children: ReactNode,
{ onClickFnc, type = "button", style = "default" }: IAppButtonProps,
) {
return (
diff --git a/src/components/ui/AppInput.tsx b/src/components/ui/AppInput.tsx
index 70473d4..591dd60 100644
--- a/src/components/ui/AppInput.tsx
+++ b/src/components/ui/AppInput.tsx
@@ -1,5 +1,5 @@
import * as S from "./appInputStyle";
-export default function AppInput({ id }: IAppInputProps) {
+export default function AppInput() {
return ;
}
diff --git a/src/pages/Page1/Page1.tsx b/src/pages/Page1/Page1.tsx
index c4c7a91..8c8b178 100644
--- a/src/pages/Page1/Page1.tsx
+++ b/src/pages/Page1/Page1.tsx
@@ -1,5 +1,3 @@
-import React from "react";
-
export default function Page1() {
return Page1
;
}
From 2d1c3a9029d05604d9859d79f91ec99dba3cf780 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=EC=9C=A4=EC=A4=80=EC=88=98?=
<99115509+hoheesu@users.noreply.github.com>
Date: Tue, 17 Dec 2024 16:22:29 +0900
Subject: [PATCH 7/7] =?UTF-8?q?fix:=20=EB=B0=B0=ED=8F=AC=20=EC=97=90?=
=?UTF-8?q?=EB=9F=AC=20=EC=88=98=EC=A0=95?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/components/ui/AppButton.tsx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/components/ui/AppButton.tsx b/src/components/ui/AppButton.tsx
index a0d2023..0503aca 100644
--- a/src/components/ui/AppButton.tsx
+++ b/src/components/ui/AppButton.tsx
@@ -2,12 +2,12 @@ import { ReactNode } from "react";
import * as S from "./appButtonStyle";
export default function AppButton(
- // children: ReactNode,
+ children: ReactNode,
{ onClickFnc, type = "button", style = "default" }: IAppButtonProps,
) {
return (
- AppButton
+ {children}
);
}