@ui5/linter
Version:
A static code analysis tool for UI5
9 lines (8 loc) • 321 B
TypeScript
import type { ArgumentsCamelCase } from "yargs";
import type { LinterArg } from "../base.ts";
/**
* Base middleware for CLI commands.
*
* This middleware should be executed for every CLI command to enable basic features (e.g. logging).
*/
export default function (argv: ArgumentsCamelCase<LinterArg>): Promise<void>;