f2aa604939
vp run check:lint reported 7 warnings, all false positives for a terminal UI library: - no-control-regex (×6): parsing keyboard escape sequences and stripping ANSI inherently requires regexes matching control chars (ESC, BEL). Disable the rule library-wide in vite.config.ts — it flags every such pattern and we already use \x1b/\u escapes (its own suggested form). Also drop the now- redundant (and misplaced — it sat one line above the regex) inline disable in sanitize-ansi.test.ts. - no-misused-spread (×1) at parse-keypress.ts:500: `[...s]` on a terminal escape sequence (ASCII control chars + digits, never user text), so the emoji-splitting concern doesn't apply. Suppressed in place with a comment explaining why, keeping the rule active elsewhere. check:lint now reports 0 warnings, 0 errors.
46 lines
1.8 KiB
TypeScript
46 lines
1.8 KiB
TypeScript
import { defineConfig } from "vite-plus";
|
|
|
|
export default defineConfig({
|
|
staged: {
|
|
"*": "vp check --fix",
|
|
},
|
|
fmt: {},
|
|
lint: {
|
|
options: { typeAware: true, typeCheck: false },
|
|
rules: {
|
|
// This is a terminal UI library: parsing keyboard escape sequences and
|
|
// stripping ANSI requires regexes that match control characters (ESC,
|
|
// BEL, etc.) by design. no-control-regex flags every such pattern as a
|
|
// false positive across the codebase, so disable it library-wide. We
|
|
// already write them as \x1b / unicode escapes (the rule's own
|
|
// suggested form), not raw bytes.
|
|
"no-control-regex": "off",
|
|
},
|
|
},
|
|
run: {
|
|
cache: false,
|
|
// `ci` is the parallel verification graph used by .github/workflows/ci.yml.
|
|
// The task runner fans out independent branches concurrently; the wall-clock
|
|
// critical path is build -> test:pty. fmt and lint have no build dependency,
|
|
// so they run immediately alongside build. check:type and the test suites
|
|
// need the built dist (@vue-tui/runtime exposes no "types" export — its
|
|
// consumers resolve types and runtime from dist/*.d.mts), so they depend on
|
|
// build. The serial `ready` script in package.json stays for simple local use.
|
|
tasks: {
|
|
"ci:build": { command: "vp run build" },
|
|
"ci:fmt": { command: "vp run check:fmt" },
|
|
"ci:lint": { command: "vp run check:lint" },
|
|
"ci:type": { command: "vp run check:type", dependsOn: ["ci:build"] },
|
|
"ci:test:integration": {
|
|
command: "vp run -r test:integration",
|
|
dependsOn: ["ci:build"],
|
|
},
|
|
"ci:test:pty": { command: "vp run -r test:pty", dependsOn: ["ci:build"] },
|
|
ci: {
|
|
command: "echo ci ok",
|
|
dependsOn: ["ci:fmt", "ci:lint", "ci:type", "ci:test:integration", "ci:test:pty"],
|
|
},
|
|
},
|
|
},
|
|
});
|