UNPKG

@ui5/linter

Version:

A static code analysis tool for UI5

15 lines (14 loc) 334 B
import { Argv } from "yargs"; export interface LinterArg { coverage: boolean; files?: string[]; filePaths?: string[]; ignorePattern?: string[]; details: boolean; fix: boolean; format: string; config?: string; ui5Config?: string; quiet: boolean; } export default function base(cli: Argv): void;