Skip to content

Commit f5061a9

Browse files
committed
fix: make TypeScript LSP conditional and update README hooks section
1 parent 98d3d97 commit f5061a9

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,11 +73,11 @@ curl -fsSL https://raw.githubusercontent.com/maxritter/claude-codepro/v3.5.0/ins
7373

7474
### 🛠️ Intelligent Hooks for Quality, Standards and Context
7575

76-
- **Qlty Quality** - Post-edit hook for automated formatting and code checking for all languages
77-
- **Python Quality** - Post-edit hook for uv, ruff, mypy, basedpyright linting and type checking (optional)
76+
- **Python Quality** - Post-edit hook for ruff, mypy, basedpyright linting and type checking (optional)
77+
- **TypeScript Quality** - Post-edit hook for eslint, tsc, prettier checks (optional)
78+
- **General Quality** - Post-edit hook for all languages for automated formatting and checking using qlty
7879
- **TDD Enforcer** - Pre-edit hook that warns when modifying code without failing tests first
7980
- **Context Monitor** - Post-tool hook that warns CC automatically at 85%/95% context usage
80-
- **Claude Memory** - Various hooks that intelligently manage Claude Memory context injection via claude-mem
8181

8282
### 🏗️ One-Command Installation
8383

installer/steps/dependencies.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -413,8 +413,9 @@ def run(self, ctx: InstallContext) -> None:
413413
else:
414414
run_tweakcc(ctx.project_dir)
415415

416-
if _install_with_spinner(ui, "TypeScript LSP", install_typescript_lsp):
417-
installed.append("typescript_lsp")
416+
if ctx.install_typescript:
417+
if _install_with_spinner(ui, "TypeScript LSP", install_typescript_lsp):
418+
installed.append("typescript_lsp")
418419

419420
if ctx.install_python:
420421
if _install_with_spinner(ui, "Pyright LSP", install_pyright_lsp):

0 commit comments

Comments
 (0)