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 • 631 B
TypeScript
/**
* Compatibility layer for Data Access Analyzer
* Ensures the new universal analyzer produces similar results to the legacy one
*/
import type { AnalyzerFunction } from '../types.js';
/**
* Legacy-compatible data access analyzer function
* This wraps the new UniversalDataAccessAnalyzer to maintain API compatibility
*/
export declare const analyzeDataAccess: AnalyzerFunction;
/**
* Analyzer definition for registration
*/
export declare const dataAccessAnalyzer: {
name: string;
description: string;
category: string;
analyze: AnalyzerFunction;
};
//# sourceMappingURL=dataAccessAnalyzerCompat.d.ts.map