mirror of
https://github.com/astral-sh/ruff.git
synced 2025-10-02 06:41:23 +00:00
Exclude deprecated extend-ignore from the JSON schema
Now that the option is deprecated we no longer want IDEs to suggest it in their autocompletion.
This commit is contained in:
parent
ba457c21b5
commit
104c63afc6
2 changed files with 1 additions and 10 deletions
|
@ -66,16 +66,6 @@
|
||||||
"type": "string"
|
"type": "string"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"extend-ignore": {
|
|
||||||
"description": "A list of rule codes or prefixes to ignore, in addition to those specified by `ignore`.\n\nThis option has been DEPRECATED in favor of `ignore` since its usage is now interchangeable with `ignore`.",
|
|
||||||
"type": [
|
|
||||||
"array",
|
|
||||||
"null"
|
|
||||||
],
|
|
||||||
"items": {
|
|
||||||
"$ref": "#/definitions/RuleSelector"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"extend-select": {
|
"extend-select": {
|
||||||
"description": "A list of rule codes or prefixes to enable, in addition to those specified by `select`.",
|
"description": "A list of rule codes or prefixes to enable, in addition to those specified by `select`.",
|
||||||
"type": [
|
"type": [
|
||||||
|
|
|
@ -147,6 +147,7 @@ pub struct Options {
|
||||||
///
|
///
|
||||||
/// This option has been DEPRECATED in favor of `ignore`
|
/// This option has been DEPRECATED in favor of `ignore`
|
||||||
/// since its usage is now interchangeable with `ignore`.
|
/// since its usage is now interchangeable with `ignore`.
|
||||||
|
#[schemars(skip)]
|
||||||
pub extend_ignore: Option<Vec<RuleSelector>>,
|
pub extend_ignore: Option<Vec<RuleSelector>>,
|
||||||
#[option(
|
#[option(
|
||||||
default = "[]",
|
default = "[]",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue