diff --git a/crates/oxc_language_server/README.md b/crates/oxc_language_server/README.md index 9556e45770634..85c9d35ded675 100644 --- a/crates/oxc_language_server/README.md +++ b/crates/oxc_language_server/README.md @@ -28,7 +28,6 @@ These options can be passed with [initialize](#initialize), [workspace/didChange | `typeAware` | `true` \| `false` | `false` | Enables type-aware linting | | `disableNestedConfig` | `false` \| `true` | `false` | Disabled nested configuration and searches only for `configPath`. | | `fixKind` | [fixKind values](#fixkind-values) | `safe_fix` | The level of a possible fix for a diagnostic, will be applied for the complete workspace (diagnostic, code action, commands and more). | -| `fmt.experimental` | `true` \| `false` | `false` | Enables experimental formatting with `oxc_formatter` | | `fmt.configPath` | `` \| `null` | `null` | Path to a oxfmt configuration file, when `null` is passed, the server will use `.oxfmtrc.json` and the workspace root | | `flags` | `Map` | `` | (deprecated) Custom flags passed to the language server. | @@ -60,7 +59,6 @@ The client can pass the workspace options like following: "typeAware": false, "disableNestedConfig": false, "fixKind": "safe_fix", - "fmt.experimental": false, "fmt.configPath": null } }] @@ -99,7 +97,6 @@ The client can pass the workspace options like following: "typeAware": false, "disableNestedConfig": false, "fixKind": "safe_fix", - "fmt.experimental": false, "fmt.configPath": null } }] @@ -195,7 +192,6 @@ The client can return a response like: "typeAware": false, "disableNestedConfig": false, "fixKind": "safe_fix", - "fmt.experimental": false, "fmt.configPath": null }] ``` diff --git a/editors/vscode/README.md b/editors/vscode/README.md index 97f34f7933c4b..4c007facc4551 100644 --- a/editors/vscode/README.md +++ b/editors/vscode/README.md @@ -67,7 +67,6 @@ Following configuration are supported via `settings.json` and can be changed for | `oxc.typeAware` | `false` | `false` \| `true` | Enable type aware linting. | | `oxc.disableNestedConfig` | `false` | `false` \| `true` | Disable searching for nested configuration files. | | `oxc.fixKind` | `safe_fix` | [FixKind](#fixkind) | Specify the kind of fixes to suggest/apply. | -| `oxc.fmt.experimental` | `false` | `false` \| `true` | Enable experimental formatting support. This feature is experimental and might not work as expected. | | `oxc.fmt.configPath` | `null` | `` \| `null` | Path to an oxfmt configuration file. When `null`, the server will use `.oxfmtrc.json` at the workspace root. | | `oxc.flags` | - | `Record` | (deprecated) Custom flags passed to the language server. |