|
1 | 1 | # Migrating from `ruff-lsp`
|
2 | 2 |
|
3 |
| -While `ruff server` supports the same feature set as [`ruff-lsp`](https://github.com/astral-sh/ruff-lsp), migrating to |
4 |
| -`ruff server` may require changes to your Ruff or language server configuration. |
| 3 | +To provide some context, [`ruff-lsp`](https://github.com/astral-sh/ruff-lsp) is the LSP implementation for Ruff to power the editor |
| 4 | +integrations which is written in Python and is a separate package from Ruff itself. The **native |
| 5 | +server** is the LSP implementation which is written in Rust and is available under the `ruff server` |
| 6 | +command. This guide is intended to help users migrate from |
| 7 | +[`ruff-lsp`](https://github.com/astral-sh/ruff-lsp) to the native server. |
5 | 8 |
|
6 | 9 | !!! note
|
7 | 10 |
|
8 |
| - The [VS Code extension](https://github.com/astral-sh/ruff-vscode) settings include documentation to indicate which |
9 |
| - settings are supported by `ruff server`. As such, this migration guide is primarily targeted at editors that lack |
10 |
| - explicit documentation for `ruff server` settings, such as Helix or Neovim. |
| 11 | + The native server was first introduced in Ruff version `0.3.5`. It was marked as beta in version |
| 12 | + `0.4.5` and officially stabilized in version `0.5.3`. It is recommended to use the latest |
| 13 | + version of Ruff to ensure the best experience. |
11 | 14 |
|
12 |
| -Refer to the [setup guide](setup.md) for instructions on how to configure your editor to use `ruff server`. |
| 15 | +The migration process involves any or all of the following: |
| 16 | + |
| 17 | +1. Migrate [deprecated settings](#unsupported-settings) to the [new settings](#new-settings) |
| 18 | +1. [Remove settings](#removed-settings) that are no longer supported |
| 19 | +1. Update the `ruff` version |
13 | 20 |
|
14 | 21 | ## Unsupported Settings
|
15 | 22 |
|
16 |
| -Several `ruff-lsp` settings are not supported by `ruff server`. These are, as follows: |
| 23 | +The following [`ruff-lsp`](https://github.com/astral-sh/ruff-lsp) settings are not supported by `ruff server`: |
17 | 24 |
|
18 | 25 | - `lint.run`: This setting is no longer relevant for the native language server, which runs on every
|
19 |
| - keystroke by default |
| 26 | + keystroke by default. |
20 | 27 | - `lint.args`, `format.args`: These settings have been replaced by more granular settings in `ruff server` like [`lint.select`](settings.md#select), [`format.preview`](settings.md#format_preview),
|
21 |
| - etc. along with the ability to provide a default configuration file using |
22 |
| - [`configuration`](settings.md#configuration) |
23 |
| -- [`path`](settings.md#path), [`interpreter`](settings.md#interpreter): These settings are no longer |
24 |
| - accepted by the language server but are still used by the VS Code extension. Refer to their |
25 |
| - respective documentation for more information on how it's being used by the extension. |
| 28 | + etc. along with the ability to provide a default configuration file using [`configuration`](settings.md#configuration). |
| 29 | + |
| 30 | +The following settings are not accepted by the language server but are still used by the VS Code |
| 31 | +extension. Refer to their respective documentation for more information on how it's being used by |
| 32 | +the extension: |
| 33 | + |
| 34 | +- [`path`](settings.md#path) |
| 35 | +- [`interpreter`](settings.md#interpreter) |
| 36 | + |
| 37 | +## Removed Settings |
| 38 | + |
| 39 | +Additionally, the following settings are not supported by the native server, they should be removed: |
| 40 | + |
26 | 41 | - `ignoreStandardLibrary`
|
27 | 42 | - `showNotifications`
|
28 | 43 |
|
29 | 44 | ## New Settings
|
30 | 45 |
|
31 |
| -`ruff server` introduces several new settings that `ruff-lsp` does not have. These are, as follows: |
| 46 | +`ruff server` introduces several new settings that [`ruff-lsp`](https://github.com/astral-sh/ruff-lsp) does not have. These are, as follows: |
32 | 47 |
|
33 | 48 | - [`configuration`](settings.md#configuration)
|
34 | 49 | - [`configurationPreference`](settings.md#configurationpreference)
|
|
0 commit comments