norminette-mcp
Version:
MCP server for 42 School norminette coding standard checker
8 lines (7 loc) • 346 B
TypeScript
export declare function generateClangFormatConfigString(): string;
export declare function checkClangFormatAvailability(): boolean;
export declare function applyClangFormat(content: string): Promise<string>;
export declare function applyClangFormatWithFallback(content: string): Promise<{
formatted: string;
usedClangFormat: boolean;
}>;