@effect/language-service 0.66.1 → 0.68.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 CHANGED
@@ -82,6 +82,7 @@ And you're done! You'll now be able to use a set of refactors and diagnostics th
82
82
  - Warn when `Layer.mergeAll` contains layers with interdependencies (where one layer provides a service that another layer in the same call requires)
83
83
  - Suggest using `Effect.fn` for functions that return `Effect.gen` for better tracing and concise syntax
84
84
  - Suggest removing redundant identifier argument when it equals the tag value in `Schema.TaggedClass`, `Schema.TaggedError`, or `Schema.TaggedRequest`
85
+ - Suggest using `Schema.is` instead of `instanceof` for Effect Schema types
85
86
 
86
87
  ### Completions
87
88
 
@@ -208,6 +209,9 @@ Automatically updates Effect codegens in your TypeScript files. This command sca
208
209
  ### `effect-language-service diagnostics`
209
210
  Provides a way to get through a CLI the list of Effect specific diagnostics; without patching your typescript installation. A --file option may be used to get diagnostics for a specific file, or --project with a tsconfig file to get an entire project.
210
211
 
212
+ ### `effect-language-service quickfixes`
213
+ Shows diagnostics that have available quick fixes along with their proposed code changes. This is useful for previewing what fixes the language service can apply to your code. Use `--file` to check a specific file, or `--project` with a tsconfig file to check an entire project. The output displays each diagnostic with its location and the diff of proposed changes.
214
+
211
215
  ### `effect-language-service check`
212
216
  This command runs a check of the setup of the patching mechanism of the LSP, to understand if typescript has been patched or not.
213
217