Skip to content

Commit 14feaf3

Browse files
committed
fix(ruff): rename ruff_lsp to ruff
Even though lspconfig still supports `ruff_lsp` and [will continue to do so until further notice](https://github.com/neovim/nvim-lspconfig/blob/4ea9083b6d3dff4ddc6da17c51334c3255b7eba5/doc/configs.md#ruff), `ruff-lsp` is [deprecated](astral-sh/ruff-lsp#520) in favour of `ruff`. The native LSP has been stable since `ruff` v0.5.3 which was released in July 2024 so it makes sense to support that out of the box instead of the deprecated standalone version.
1 parent 9772a25 commit 14feaf3

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ local my_settings = Neoconf.get("neodev", defaults)
260260
- [x] [rescriptls](https://github.com/rescript-lang/rescript-vscode/tree/master/package.json)
261261
- [x] [rls](https://github.com/rust-lang/vscode-rust/tree/master/package.json)
262262
- [x] [rome](https://github.com/rome/tools/tree/main/editors/vscode/package.json)
263-
- [x] [ruff_lsp](https://github.com/astral-sh/ruff-vscode/tree/main/package.json)
263+
- [x] [ruff](https://github.com/astral-sh/ruff-vscode/tree/main/package.json)
264264
- [x] [rust_analyzer](https://github.com/rust-analyzer/rust-analyzer/tree/master/editors/code/package.json)
265265
- [x] [solargraph](https://github.com/castwide/vscode-solargraph/tree/master/package.json)
266266
- [x] [solidity_ls](https://github.com/juanfranblanco/vscode-solidity/tree/master/package.json)

doc/neoconf.nvim.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ SUPPORTED LANGUAGE SERVERS*neoconf.nvim-neoconf.nvim-supported-language-servers*
278278
- rescriptls <https://github.com/rescript-lang/rescript-vscode/tree/master/package.json>
279279
- rls <https://github.com/rust-lang/vscode-rust/tree/master/package.json>
280280
- rome <https://github.com/rome/tools/tree/main/editors/vscode/package.json>
281-
- ruff_lsp <https://github.com/astral-sh/ruff-vscode/tree/main/package.json>
281+
- ruff <https://github.com/astral-sh/ruff-vscode/tree/main/package.json>
282282
- rust_analyzer <https://github.com/rust-analyzer/rust-analyzer/tree/master/editors/code/package.json>
283283
- solargraph <https://github.com/castwide/vscode-solargraph/tree/master/package.json>
284284
- solidity_ls <https://github.com/juanfranblanco/vscode-solidity/tree/master/package.json>

lua/neoconf/build/schemas.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ M.index = {
4747
rescriptls = "https://raw.githubusercontent.com/rescript-lang/rescript-vscode/master/package.json",
4848
rls = "https://raw.githubusercontent.com/rust-lang/vscode-rust/master/package.json",
4949
rome = "https://raw.githubusercontent.com/rome/tools/main/editors/vscode/package.json",
50-
ruff_lsp = "https://raw.githubusercontent.com/astral-sh/ruff-vscode/main/package.json",
50+
ruff = "https://raw.githubusercontent.com/astral-sh/ruff-vscode/main/package.json",
5151
rust_analyzer = "https://raw.githubusercontent.com/rust-analyzer/rust-analyzer/master/editors/code/package.json",
5252
solargraph = "https://raw.githubusercontent.com/castwide/vscode-solargraph/master/package.json",
5353
solidity_ls = "https://raw.githubusercontent.com/juanfranblanco/vscode-solidity/master/package.json",
File renamed without changes.

0 commit comments

Comments
 (0)