@felixgeelhaar/cclint
Version:
Catch CLAUDE.md drift before Claude misbehaves. Lints CLAUDE.md, skills, subagents, and hooks for Claude Code projects.
18 lines • 605 B
JavaScript
/**
* cclint LSP server entry point.
*
* Run as a stdio language server so any LSP-compatible editor (VS Code, Neovim,
* Emacs, Sublime, …) can surface real-time cclint diagnostics while editing
* CLAUDE.md, skills, subagents, and Claude Code config files.
*
* Editors typically launch it as:
*
* cclint-lsp --stdio
*
* The `--stdio` flag is the conventional signal from LSP clients; the server
* communicates over stdio regardless, so no argument parsing is required here.
*/
import { startServer } from './server.js';
startServer();
//# sourceMappingURL=index.js.map