UNPKG

f2elint

Version:

Linter for Alibaba F2E Guidelines

12 lines (11 loc) 356 B
import { TemplateType } from './types.js'; export type { TemplateType }; export interface F2elintOptions { template?: TemplateType; stylelint?: boolean; prettier?: boolean; commitlint?: boolean; lintStaged?: boolean; disableLog?: boolean; } export default function f2elint(project: string, options?: F2elintOptions): Promise<void>;