Remove non-existing `lint.extendIgnore` editor setting (#15844)

This setting doesn't exist in the first place. I must've added it by
mistake thinking that it exists similar to `extendSelect`. One reason to
have auto-generated docs.


988be01fbe/crates/ruff_server/src/session/settings.rs (L124-L133)

Closes: #14665
This commit is contained in:
Dhruv Manilawala 2025-01-31 11:30:17 +05:30 committed by GitHub
parent 172f62d8f4
commit 4df0796d61
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 0 additions and 50 deletions

View File

@ -805,56 +805,6 @@ Rules to disable by default. See [the documentation](https://docs.astral.sh/ruff
}
```
### `extendIgnore`
Rules to disable in addition to those in [`lint.ignore`](#ignore).
**Default value**: `null`
**Type**: `string[]`
**Example usage**:
=== "VS Code"
```json
{
"ruff.lint.extendIgnore": ["W1"]
}
```
=== "Neovim"
```lua
require('lspconfig').ruff.setup {
init_options = {
settings = {
lint = {
extendIgnore = {"W1"}
}
}
}
}
```
=== "Zed"
```json
{
"lsp": {
"ruff": {
"initialization_options": {
"settings": {
"lint": {
"extendIgnore": ["W1"]
}
}
}
}
}
}
```
## `format`
Settings specific to the Ruff formatter.