@effect/language-service 0.82.0 → 0.83.0
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.
- package/README.md +3 -0
- package/cli.js +10389 -10004
- package/cli.js.map +1 -1
- package/effect-lsp-patch-utils.js +26 -45
- package/effect-lsp-patch-utils.js.map +1 -1
- package/index.js +37 -56
- package/index.js.map +1 -1
- package/package.json +1 -1
- package/transform.js +26 -45
- package/transform.js.map +1 -1
package/README.md
CHANGED
|
@@ -249,6 +249,9 @@ The effect language service plugin comes with a builtin CLI tool that can be use
|
|
|
249
249
|
### `effect-language-service setup`
|
|
250
250
|
Runs through a wizard to setup/update some basic functionalities of the LSP in an interactive way. This also keeps the `tsconfig.json` `$schema` aligned with the published Effect Language Service schema.
|
|
251
251
|
|
|
252
|
+
### `effect-language-service config`
|
|
253
|
+
After selecting a tsconfig.json file, jumps to the interactive configuration of rules severities.
|
|
254
|
+
|
|
252
255
|
### `effect-language-service codegen`
|
|
253
256
|
Automatically updates Effect codegens in your TypeScript files. This command scans files for `@effect-codegens` directives and applies the necessary code transformations. Use `--file` to update a specific file, or `--project` with a tsconfig file to update an entire project. The `--verbose` flag provides detailed output about which files are being processed and updated.
|
|
254
257
|
|