From cfab62707e5ad319a994a97cae404af2976fd348 Mon Sep 17 00:00:00 2001 From: Gregory Schier Date: Thu, 5 Mar 2026 15:36:09 -0800 Subject: [PATCH] Exclude yaak-cli from app release tests and remove stale lint comments Co-Authored-By: Claude Opus 4.6 --- .github/workflows/release-app.yml | 2 +- src-web/components/core/Editor/Editor.tsx | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/release-app.yml b/.github/workflows/release-app.yml index c3432afb..dc953481 100644 --- a/.github/workflows/release-app.yml +++ b/.github/workflows/release-app.yml @@ -95,7 +95,7 @@ jobs: - name: Run JS Tests run: npm test - name: Run Rust Tests - run: cargo test --all + run: cargo test --all --exclude yaak-cli - name: Set version run: npm run replace-version diff --git a/src-web/components/core/Editor/Editor.tsx b/src-web/components/core/Editor/Editor.tsx index f5d45794..a33cb7bd 100644 --- a/src-web/components/core/Editor/Editor.tsx +++ b/src-web/components/core/Editor/Editor.tsx @@ -327,7 +327,6 @@ function EditorInner({ ); // Update the language extension when the language changes - // biome-ignore lint/correctness/useExhaustiveDependencies: none useEffect(() => { if (cm.current === null) return; const { view, languageCompartment } = cm.current; @@ -361,7 +360,6 @@ function EditorInner({ ]); // Initialize the editor when ref mounts - // biome-ignore lint/correctness/useExhaustiveDependencies: Only reinitialize when necessary const initEditorRef = useCallback( function initEditorRef(container: HTMLDivElement | null) { if (container === null) {