@narumitw/pi-lsp 0.1.27 → 0.1.29

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +11 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -38,6 +38,8 @@ Custom config can be supplied in one of these locations:
38
38
  2. `<workspace>/.pi/lsp.json`
39
39
  3. `~/.pi/agent/lsp.json`
40
40
 
41
+ `PI_LSP_CONFIG` only accepts JSON or a JSON file path; JavaScript and TypeScript config files are not evaluated.
42
+
41
43
  `lsp.json` can be a plain object keyed by server name:
42
44
 
43
45
  ```json
@@ -111,6 +113,15 @@ PI_RUFF_LSP_COMMAND="uvx ruff server" \
111
113
  pi -e ./extensions/pi-lsp
112
114
  ```
113
115
 
116
+ ## ⚠️ Tool changes
117
+
118
+ `lsp_format` is no longer provided. pi-lsp now focuses on LSP diagnostics and source code actions:
119
+
120
+ - `lsp_diagnostics`
121
+ - `lsp_fix`
122
+
123
+ Use project formatters or shell commands for formatting workflows.
124
+
114
125
  ## 🛠️ Pi tools
115
126
 
116
127
  ### `lsp_diagnostics`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@narumitw/pi-lsp",
3
- "version": "0.1.27",
3
+ "version": "0.1.29",
4
4
  "description": "Pi extension that exposes configurable, language-agnostic LSP tools through a shared runner.",
5
5
  "type": "module",
6
6
  "license": "MIT",