Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions crates/oxc_language_server/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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` | `<string>` \| `null` | `null` | Path to a oxfmt configuration file, when `null` is passed, the server will use `.oxfmtrc.json` and the workspace root |
| `flags` | `Map<string, string>` | `<empty>` | (deprecated) Custom flags passed to the language server. |

Expand Down Expand Up @@ -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
}
}]
Expand Down Expand Up @@ -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
}
}]
Expand Down Expand Up @@ -195,7 +192,6 @@ The client can return a response like:
"typeAware": false,
"disableNestedConfig": false,
"fixKind": "safe_fix",
"fmt.experimental": false,
"fmt.configPath": null
}]
```
1 change: 0 additions & 1 deletion editors/vscode/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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` | `<string>` \| `null` | Path to an oxfmt configuration file. When `null`, the server will use `.oxfmtrc.json` at the workspace root. |
| `oxc.flags` | - | `Record<string, string>` | (deprecated) Custom flags passed to the language server. |

Expand Down
Loading