frontend-standards-checker
Version:
A comprehensive frontend standards validation tool with TypeScript support
27 lines • 928 B
TypeScript
import type { ICliOptions, IValidationResult } from './types/index.js';
/**
* Main Frontend Standards Checker class
* Orchestrates the validation process and coordinates all modules
*/
export declare class FrontendStandardsChecker {
private readonly options;
private readonly logger;
private readonly configLoader;
private readonly projectAnalyzer;
private readonly fileScanner;
private readonly ruleEngine;
private readonly reporter;
constructor(options?: Partial<ICliOptions>);
/**
* Main execution method
* @returns Promise<ValidationResult> - Complete validation results
*/
run(): Promise<IValidationResult>;
/**
* Determine which zones to validate based on project structure and options
*/
private determineZones;
}
export default FrontendStandardsChecker;
export * from './types/standardConfiguration.type.js';
//# sourceMappingURL=index.d.ts.map