Files
openclaw/scripts/run-bundled-extension-oxlint.mjs
2026-06-04 23:49:34 -04:00

11 lines
398 B
JavaScript

// Runs oxlint over bundled plugin source files using the shared extension lint runner.
import { runExtensionOxlint } from "./lib/run-extension-oxlint.mjs";
runExtensionOxlint({
roots: ["extensions"],
toolName: "oxlint-bundled-extensions",
lockName: "oxlint-bundled-extensions",
tempDirPrefix: "openclaw-bundled-extension-oxlint-",
emptyMessage: "No bundled extension files found.",
});