Skip to content

Commit 0f1eb1e

Browse files
authored
Improve migration document (#16072)
## Summary This PR improves the migration document based on recent feedback. [Rendered version](https://github.com/astral-sh/ruff/blob/dhruv/migration/docs/editors/migration.md) ### Preview <img width="1897" alt="Screenshot 2025-02-10 at 2 52 31 PM" src="https://github.com/user-attachments/assets/596a3217-6598-4274-ab49-a89b9cb60fe0" />
1 parent b69eb90 commit 0f1eb1e

File tree

1 file changed

+29
-14
lines changed

1 file changed

+29
-14
lines changed

docs/editors/migration.md

+29-14
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,49 @@
11
# Migrating from `ruff-lsp`
22

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.
58

69
!!! note
710

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.
1114

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
1320

1421
## Unsupported Settings
1522

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`:
1724

1825
- `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.
2027
- `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+
2641
- `ignoreStandardLibrary`
2742
- `showNotifications`
2843

2944
## New Settings
3045

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:
3247

3348
- [`configuration`](settings.md#configuration)
3449
- [`configurationPreference`](settings.md#configurationpreference)

0 commit comments

Comments
 (0)