UNPKG

@codacy/codacy-mcp

Version:

Codacy MCP server

23 lines (22 loc) 625 B
import { CodacyCli } from './CodacyCli.js'; const NOT_SUPPORTED = 'CLI on Windows is not supported without WSL.'; export class WinCodacyCli extends CodacyCli { constructor(rootPath, provider, organization, repository) { super(rootPath, provider, organization, repository); } install() { throw new Error(NOT_SUPPORTED); } installDependencies() { throw new Error(NOT_SUPPORTED); } update() { throw new Error(NOT_SUPPORTED); } initialize() { throw new Error(NOT_SUPPORTED); } analyze(_options) { throw new Error(NOT_SUPPORTED); } }