chore: fix eslint warnings

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
gsxdsm
2026-05-04 07:08:01 -07:00
parent 52e74d48c9
commit 50eb39fa70
4 changed files with 5 additions and 5 deletions

View File

@@ -829,6 +829,7 @@ export class DashboardTUI {
// them from the stream.
private installMouseListener(): void {
if (this.mouseStdinListener) return;
// eslint-disable-next-line no-control-regex -- ESC byte is intentional for SGR mouse parsing
const mouseRe = /\x1b\[<(\d+);\d+;\d+[Mm]/g;
const listener = (chunk: Buffer | string): void => {
const text = typeof chunk === "string" ? chunk : chunk.toString("utf8");