code-auditor-mcp
Version:
Multi-language code quality auditor with MCP server - Analyze TypeScript, JavaScript, and Go code for SOLID principles, DRY violations, security patterns, and more
20 lines • 599 B
TypeScript
/**
* Compatibility layer for SOLID Analyzer
* Ensures the new universal analyzer produces similar results to the legacy one
*/
import type { AnalyzerFunction } from '../types.js';
/**
* Legacy-compatible SOLID analyzer function
* This wraps the new UniversalSOLIDAnalyzer to maintain API compatibility
*/
export declare const analyzeSOLID: AnalyzerFunction;
/**
* Analyzer definition for registration
*/
export declare const solidAnalyzer: {
name: string;
description: string;
category: string;
analyze: AnalyzerFunction;
};
//# sourceMappingURL=solidAnalyzerCompat.d.ts.map