mirror of
https://github.com/astral-sh/ruff.git
synced 2025-09-27 20:39:13 +00:00
Update JSON schema (#5576)
Confused as to how this got merged, but... oh well.
This commit is contained in:
parent
5908b39102
commit
cd4718988a
1 changed files with 4 additions and 4 deletions
8
ruff.schema.json
generated
8
ruff.schema.json
generated
|
@ -1170,7 +1170,7 @@
|
|||
}
|
||||
},
|
||||
"extra-standard-library": {
|
||||
"description": "A list of modules to consider standard-library, in addition to those known to Ruff in advance.",
|
||||
"description": "A list of modules to consider standard-library, in addition to those known to Ruff in advance.\n\nSupports glob patterns. For more information on the glob syntax, refer to the [`globset` documentation](https://docs.rs/globset/latest/globset/#syntax).",
|
||||
"type": [
|
||||
"array",
|
||||
"null"
|
||||
|
@ -1221,7 +1221,7 @@
|
|||
}
|
||||
},
|
||||
"known-first-party": {
|
||||
"description": "A list of modules to consider first-party, regardless of whether they can be identified as such via introspection of the local filesystem.",
|
||||
"description": "A list of modules to consider first-party, regardless of whether they can be identified as such via introspection of the local filesystem.\n\nSupports glob patterns. For more information on the glob syntax, refer to the [`globset` documentation](https://docs.rs/globset/latest/globset/#syntax).",
|
||||
"type": [
|
||||
"array",
|
||||
"null"
|
||||
|
@ -1231,7 +1231,7 @@
|
|||
}
|
||||
},
|
||||
"known-local-folder": {
|
||||
"description": "A list of modules to consider being a local folder. Generally, this is reserved for relative imports (`from . import module`).",
|
||||
"description": "A list of modules to consider being a local folder. Generally, this is reserved for relative imports (`from . import module`).\n\nSupports glob patterns. For more information on the glob syntax, refer to the [`globset` documentation](https://docs.rs/globset/latest/globset/#syntax).",
|
||||
"type": [
|
||||
"array",
|
||||
"null"
|
||||
|
@ -1241,7 +1241,7 @@
|
|||
}
|
||||
},
|
||||
"known-third-party": {
|
||||
"description": "A list of modules to consider third-party, regardless of whether they can be identified as such via introspection of the local filesystem.",
|
||||
"description": "A list of modules to consider third-party, regardless of whether they can be identified as such via introspection of the local filesystem.\n\nSupports glob patterns. For more information on the glob syntax, refer to the [`globset` documentation](https://docs.rs/globset/latest/globset/#syntax).",
|
||||
"type": [
|
||||
"array",
|
||||
"null"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue