Update schema order

This commit is contained in:
konstin 2025-06-30 15:29:28 +02:00
parent 8daf09f6a5
commit 111f95b8f8

18
uv.schema.json generated
View file

@ -894,15 +894,6 @@
"Index": {
"type": "object",
"properties": {
"format": {
"description": "The format used by the index.\n\nIndexes can either be PEP 503-compliant (i.e., a PyPI-style registry implementing the Simple\nAPI) or structured as a flat list of distributions (e.g., `--find-links`). In both cases,\nindexes can point to either local or remote resources.",
"allOf": [
{
"$ref": "#/definitions/IndexFormat"
}
],
"default": "simple"
},
"authenticate": {
"description": "When uv should use authentication for requests to the index.\n\n```toml\n[[tool.uv.index]]\nname = \"my-index\"\nurl = \"https://<omitted>/simple\"\nauthenticate = \"always\"\n```",
"allOf": [
@ -922,6 +913,15 @@
"type": "boolean",
"default": false
},
"format": {
"description": "The format used by the index.\n\nIndexes can either be PEP 503-compliant (i.e., a PyPI-style registry implementing the Simple\nAPI) or structured as a flat list of distributions (e.g., `--find-links`). In both cases,\nindexes can point to either local or remote resources.",
"allOf": [
{
"$ref": "#/definitions/IndexFormat"
}
],
"default": "simple"
},
"ignore-error-codes": {
"description": "Status codes that uv should ignore when deciding whether\nto continue searching in the next index after a failure.\n\n```toml\n[[tool.uv.index]]\nname = \"my-index\"\nurl = \"https://<omitted>/simple\"\nignore-error-codes = [401, 403]\n```",
"type": [