UNPKG

@featurevisor/core

Version:

Core package of Featurevisor for Node.js usage

10 lines (9 loc) 340 B
import { Dependencies } from "../dependencies"; import { Plugin } from "../cli"; export interface LintProjectOptions { keyPattern?: string; entityType?: string; authors?: boolean; } export declare function lintProject(deps: Dependencies, options?: LintProjectOptions): Promise<boolean>; export declare const lintPlugin: Plugin;