From 8e3a1114ca42fdb02e313735e5c9aa7927f9f7bd Mon Sep 17 00:00:00 2001 From: KAWAKAMI Moeki Date: Mon, 30 Mar 2026 23:28:30 +0900 Subject: [PATCH 1/7] =?UTF-8?q?test:=20webhook=20=E3=83=86=E3=82=B9?= =?UTF-8?q?=E3=83=88=E7=94=A8=E3=81=AE=E6=84=8F=E5=9B=B3=E7=9A=84=E3=81=AA?= =?UTF-8?q?lint=E3=82=A8=E3=83=A9=E3=83=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.6 (1M context) --- src/renderer/src/constants/styles.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/renderer/src/constants/styles.ts b/src/renderer/src/constants/styles.ts index c5dfd8d..814e170 100644 --- a/src/renderer/src/constants/styles.ts +++ b/src/renderer/src/constants/styles.ts @@ -37,6 +37,10 @@ export const CSS_CLASSES = { focused: 'focused' } as const +// eslint-disable-next-line @typescript-eslint/no-unused-vars +const unused_variable = "this will cause CI to fail" +var bad_style = 42 + export const FOCUS_CLASSES = { fileList: 'focus-file-list', editor: 'focus-editor', From da675ecd0a84b198975542d14cfe1fe52785c8f3 Mon Sep 17 00:00:00 2001 From: KAWAKAMI Moeki Date: Mon, 30 Mar 2026 23:53:30 +0900 Subject: [PATCH 2/7] =?UTF-8?q?refactor:=20lint=E3=82=A8=E3=83=A9=E3=83=BC?= =?UTF-8?q?=E3=82=92=E4=BF=AE=E6=AD=A3=E3=81=97=E3=80=81=E6=A4=9C=E7=B4=A2?= =?UTF-8?q?=E9=96=A2=E9=80=A3=E3=81=AECSS=E3=82=AF=E3=83=A9=E3=82=B9?= =?UTF-8?q?=E3=82=92=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.6 (1M context) --- src/renderer/src/constants/styles.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/renderer/src/constants/styles.ts b/src/renderer/src/constants/styles.ts index 814e170..2c05b4c 100644 --- a/src/renderer/src/constants/styles.ts +++ b/src/renderer/src/constants/styles.ts @@ -34,12 +34,12 @@ export const CSS_CLASSES = { shadow: 'shadow-sm', // Focus states - focused: 'focused' -} as const + focused: 'focused', -// eslint-disable-next-line @typescript-eslint/no-unused-vars -const unused_variable = "this will cause CI to fail" -var bad_style = 42 + // Search + searchInput: 'search-input', + searchResults: 'search-results' +} as const export const FOCUS_CLASSES = { fileList: 'focus-file-list', From f7809073b68ef8e44bd2b41cfd663037689d3bd2 Mon Sep 17 00:00:00 2001 From: KAWAKAMI Moeki Date: Mon, 30 Mar 2026 23:59:43 +0900 Subject: [PATCH 3/7] =?UTF-8?q?test:=20=E6=84=8F=E5=9B=B3=E7=9A=84?= =?UTF-8?q?=E3=81=AAlint=E3=82=A8=E3=83=A9=E3=83=BC=E3=82=92=E8=BF=BD?= =?UTF-8?q?=E5=8A=A0=EF=BC=88webhook=20=E3=83=86=E3=82=B9=E3=83=88?= =?UTF-8?q?=E7=94=A8=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.6 (1M context) --- src/renderer/src/App.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/renderer/src/App.tsx b/src/renderer/src/App.tsx index 5260e8b..e8f9ffd 100644 --- a/src/renderer/src/App.tsx +++ b/src/renderer/src/App.tsx @@ -4,6 +4,8 @@ import Page from './components/Page' import { AppProviders } from './providers/AppProviders' export default function App(): JSX.Element { + var webhookTest = 'intentional-lint-error' + console.log(webhookTest) return ( From 69902c27e621477ab32a75568e5449196af08313 Mon Sep 17 00:00:00 2001 From: KAWAKAMI Moeki Date: Tue, 31 Mar 2026 01:07:26 +0900 Subject: [PATCH 4/7] =?UTF-8?q?test:=20=E5=88=A5=E3=81=AE=E7=A8=AE?= =?UTF-8?q?=E9=A1=9E=E3=81=AElint=E3=82=A8=E3=83=A9=E3=83=BC=E3=82=92?= =?UTF-8?q?=E8=BF=BD=E5=8A=A0=EF=BC=88webhook=20=E3=83=86=E3=82=B9?= =?UTF-8?q?=E3=83=88=E7=94=A8=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 未使用変数、prefer-const、naming-convention違反を追加 Co-Authored-By: Claude Opus 4.6 (1M context) --- src/renderer/src/App.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/renderer/src/App.tsx b/src/renderer/src/App.tsx index e8f9ffd..81eb396 100644 --- a/src/renderer/src/App.tsx +++ b/src/renderer/src/App.tsx @@ -4,8 +4,9 @@ import Page from './components/Page' import { AppProviders } from './providers/AppProviders' export default function App(): JSX.Element { - var webhookTest = 'intentional-lint-error' - console.log(webhookTest) + const unused_variable = 42 + let mutable_but_never_reassigned = 'test' + console.log(mutable_but_never_reassigned) return ( From d72fa70c3df6e5dae4a4b6bba15d914653ec46c9 Mon Sep 17 00:00:00 2001 From: KAWAKAMI Moeki Date: Tue, 31 Mar 2026 01:14:45 +0900 Subject: [PATCH 5/7] a --- .mcp.json | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .mcp.json diff --git a/.mcp.json b/.mcp.json new file mode 100644 index 0000000..da39e4f --- /dev/null +++ b/.mcp.json @@ -0,0 +1,3 @@ +{ + "mcpServers": {} +} From cba868bc1f1039b5976437d1a9632245ab1c2572 Mon Sep 17 00:00:00 2001 From: KAWAKAMI Moeki Date: Tue, 31 Mar 2026 01:20:06 +0900 Subject: [PATCH 6/7] a From 20b17271548b643b9bad2f4b062627661d724718 Mon Sep 17 00:00:00 2001 From: KAWAKAMI Moeki Date: Tue, 31 Mar 2026 01:25:40 +0900 Subject: [PATCH 7/7] aaa