From 871601b6fed71a85e6d0745397df329355002fc0 Mon Sep 17 00:00:00 2001 From: Neil <4138956+nwparker@users.noreply.github.com> Date: Sat, 29 Aug 2026 20:06:41 -0700 Subject: [PATCH] Prune resolved max-lines suppressions (#17142) * Split speech session lifecycle * Split terminal output scheduler pipeline * Split mobile browser pane modules * Prune resolved max-lines suppressions * Fix F3-speech for #17123 * Fix F1-cycle for #17131 --- config/max-lines-baseline.txt | 2 -- mobile/.oxlintrc.json | 6 ------ src/relay/workspace-space-scan.ts | 2 -- 3 files changed, 10 deletions(-) diff --git a/config/max-lines-baseline.txt b/config/max-lines-baseline.txt index cd2253dcde7..740626e9bae 100644 --- a/config/max-lines-baseline.txt +++ b/config/max-lines-baseline.txt @@ -38,7 +38,6 @@ inline src/preload/index.ts inline src/relay/dispatcher.ts inline src/relay/git-handler.ts inline src/relay/pty-handler.ts -inline src/relay/workspace-space-scan.ts inline src/renderer/src/components/GitLabItemDialog.tsx inline src/renderer/src/components/LinearItemDrawer.tsx inline src/renderer/src/components/TaskPage.tsx @@ -83,6 +82,5 @@ mobile-config app/h/*/tasks.tsx mobile-config app/index.tsx mobile-config app/troubleshoot.tsx mobile-config scripts/mock-server.ts -mobile-config src/components/NewWorktreeModal.tsx mobile-config src/terminal/terminal-webview-html.ts mobile-config src/transport/rpc-client.ts diff --git a/mobile/.oxlintrc.json b/mobile/.oxlintrc.json index 7192820eb16..9100394b001 100644 --- a/mobile/.oxlintrc.json +++ b/mobile/.oxlintrc.json @@ -57,12 +57,6 @@ "max-lines": ["error", { "max": 1422, "skipBlankLines": true, "skipComments": true }] } }, - { - "files": ["src/components/NewWorktreeModal.tsx"], - "rules": { - "max-lines": ["error", { "max": 1263, "skipBlankLines": true, "skipComments": true }] - } - }, { "files": ["src/transport/rpc-client.ts"], "rules": { diff --git a/src/relay/workspace-space-scan.ts b/src/relay/workspace-space-scan.ts index d66f0d0e618..73a68454833 100644 --- a/src/relay/workspace-space-scan.ts +++ b/src/relay/workspace-space-scan.ts @@ -1,5 +1,3 @@ -/* eslint-disable max-lines -- Why: local and relay Space scans share the same - cancellation, symlink, and top-level compaction semantics in one scanner. */ import { execFile } from 'node:child_process' import type { Dirent } from 'node:fs' import { lstat, opendir } from 'node:fs/promises'