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'