Skip to content
Merged
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,7 @@ This project would not exist without the hard work of some other open source pro
- [x] [rescriptls](https://github.com/rescript-lang/rescript-vscode/tree/master/package.json)
- [x] [rls](https://github.com/rust-lang/vscode-rust/tree/master/package.json)
- [x] [rome](https://github.com/rome/tools/tree/main/editors/vscode/package.json)
- [x] [ruff_lsp](https://github.com/astral-sh/ruff-vscode/tree/main/package.json)
- [x] [ruff](https://github.com/astral-sh/ruff-vscode/tree/main/package.json)
- [x] [rust_analyzer](https://github.com/rust-analyzer/rust-analyzer/tree/master/editors/code/package.json)
- [x] [solargraph](https://github.com/castwide/vscode-solargraph/tree/master/package.json)
- [x] [solidity_ls](https://github.com/juanfranblanco/vscode-solidity/tree/master/package.json)
Expand Down
2 changes: 1 addition & 1 deletion lua/codesettings/build/schemas.lua
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ M.index = {
rescriptls = 'https://raw.githubusercontent.com/rescript-lang/rescript-vscode/master/package.json',
rls = 'https://raw.githubusercontent.com/rust-lang/vscode-rust/master/package.json',
rome = 'https://raw.githubusercontent.com/rome/tools/main/editors/vscode/package.json',
ruff_lsp = 'https://raw.githubusercontent.com/astral-sh/ruff-vscode/main/package.json',
ruff = 'https://raw.githubusercontent.com/astral-sh/ruff-vscode/main/package.json',
rust_analyzer = 'https://raw.githubusercontent.com/rust-analyzer/rust-analyzer/master/editors/code/package.json',
solargraph = 'https://raw.githubusercontent.com/castwide/vscode-solargraph/master/package.json',
solidity_ls = 'https://raw.githubusercontent.com/juanfranblanco/vscode-solidity/master/package.json',
Expand Down
30 changes: 15 additions & 15 deletions lua/codesettings/generated/annotations.lua
Original file line number Diff line number Diff line change
Expand Up @@ -18265,7 +18265,7 @@
-- enable = true
-- }
-- ```
---@class lsp.ruff_lsp.DisableRuleComment
---@class lsp.ruff.DisableRuleComment
-- Enable the Quick Fix.
--
-- ```lua
Expand All @@ -18280,33 +18280,33 @@
-- enable = true
-- }
-- ```
---@class lsp.ruff_lsp.FixViolation
---@class lsp.ruff.FixViolation
-- Enable the Quick Fix.
--
-- ```lua
-- default = true
-- ```
---@field enable boolean?

---@class lsp.ruff_lsp.CodeAction
---@class lsp.ruff.CodeAction
-- Whether to display Quick Fix actions to disable rules via `noqa` suppression comments.
--
-- ```lua
-- default = {
-- enable = true
-- }
-- ```
---@field disableRuleComment lsp.ruff_lsp.DisableRuleComment?
---@field disableRuleComment lsp.ruff.DisableRuleComment?
-- Whether to display Quick Fix actions to autofix violations.
--
-- ```lua
-- default = {
-- enable = true
-- }
-- ```
---@field fixViolation lsp.ruff_lsp.FixViolation?
---@field fixViolation lsp.ruff.FixViolation?

---@class lsp.ruff_lsp.Format
---@class lsp.ruff.Format
-- Additional command-line arguments to pass to `ruff format`, e.g., `"args": ["--config=/path/to/pyproject.toml"]`. Supports a subset of Ruff's command-line arguments, ignoring those that are required to operate the LSP, like `--force-exclude` and `--verbose`.
--
-- **This setting is not supported by the native server.**
Expand All @@ -18326,7 +18326,7 @@
-- **This setting is used only by the native server.**
---@field preview boolean?

---@class lsp.ruff_lsp.Lint
---@class lsp.ruff.Lint
-- Additional command-line arguments to pass to `ruff check`, e.g., `"args": ["--config=/path/to/pyproject.toml"]`. Supports a subset of Ruff's command-line arguments, ignoring those that are required to operate the LSP, like `--force-exclude` and `--verbose`.
--
-- **This setting is not supported by the native server.**
Expand Down Expand Up @@ -18366,15 +18366,15 @@
-- **This setting is used only by the native server.**
---@field select string[]?

---@class lsp.ruff_lsp.Trace
---@class lsp.ruff.Trace
-- Traces the communication between VSCode and the ruff-lsp.
--
-- ```lua
-- default = "off"
-- ```
---@field server "off" | "messages" | "verbose"?

---@class lsp.ruff_lsp.Ruff
---@class lsp.ruff.Ruff
-- Additional command-line arguments to pass to `ruff check`, e.g., `"args": ["--config=/path/to/pyproject.toml"]`. Supports a subset of Ruff's command-line arguments, ignoring those that are required to operate the LSP, like `--force-exclude` and `--verbose`.
--
-- **This setting is not supported by the native server.**
Expand All @@ -18383,7 +18383,7 @@
-- default = {}
-- ```
---@field args string[]?
---@field codeAction lsp.ruff_lsp.CodeAction?
---@field codeAction lsp.ruff.CodeAction?
-- Configuration overrides for Ruff. See [the documentation](https://docs.astral.sh/ruff/editors/settings/#configuration) for more details.
--
-- **This setting is used only by the native server.**
Expand Down Expand Up @@ -18414,7 +18414,7 @@
-- default = true
-- ```
---@field fixAll boolean?
---@field format lsp.ruff_lsp.Format?
---@field format lsp.ruff.Format?
-- Whether to ignore files that are inferred to be part of the Python standard library.
--
-- ```lua
Expand All @@ -18437,7 +18437,7 @@
--
-- **This setting is used only by the native server.**
---@field lineLength integer?
---@field lint lsp.ruff_lsp.Lint?
---@field lint lsp.ruff.Lint?
-- Path to the log file for the language server.
--
-- **This setting is used only by the native server.**
Expand Down Expand Up @@ -18484,10 +18484,10 @@
-- default = true
-- ```
---@field showSyntaxErrors boolean?
---@field trace lsp.ruff_lsp.Trace?
---@field trace lsp.ruff.Trace?

---@class lsp.ruff_lsp
---@field ruff lsp.ruff_lsp.Ruff?
---@class lsp.ruff
---@field ruff lsp.ruff.Ruff?

---@class lsp.rust_analyzer.TermSearch
-- Enable borrow checking for term search code assists. If set to false, also there will be
Expand Down
File renamed without changes.