mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-06 05:51:15 +08:00
11 lines
398 B
JavaScript
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.",
|
|
});
|