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 pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ build-backend = "hatchling.build"

[project]
name = "validate-pyproject-schema-store"
version = "2026.01.08"
version = "2026.01.10"
authors = [
{ name = "Henry Schreiner", email = "[email protected]" },
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -264,6 +264,11 @@
"default": false,
"type": "boolean"
},
"allow_untyped_decorators": {
"description": "Allow decorating typed functions with untyped decorators.",
"default": false,
"type": "boolean"
},
"disallow_untyped_decorators": {
"description": "Reports an error whenever a function with type annotations is decorated with a decorator without annotations.",
"default": false,
Expand Down Expand Up @@ -724,6 +729,9 @@
"check_untyped_defs": {
"$ref": "#/properties/check_untyped_defs"
},
"allow_untyped_decorators": {
"$ref": "#/properties/allow_untyped_decorators"
},
"disallow_untyped_decorators": {
"$ref": "#/properties/disallow_untyped_decorators"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1129,9 +1129,9 @@
"x-tombi-array-values-order": "ascending"
},
"tmp_path_retention_count": {
"type": "integer",
"type": "string",
"description": "How many sessions should we keep the tmp_path directories, according to tmp_path_retention_policy.",
"default": 3
"default": "3"
},
"tmp_path_retention_policy": {
"type": "string",
Expand Down
46 changes: 45 additions & 1 deletion src/validate_pyproject_schema_store/resources/ruff.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -1881,6 +1881,38 @@
"object",
"null"
],
"properties": {
"first-party": {
"type": "array",
"items": {
"type": "string"
}
},
"future": {
"type": "array",
"items": {
"type": "string"
}
},
"local-folder": {
"type": "array",
"items": {
"type": "string"
}
},
"standard-library": {
"type": "array",
"items": {
"type": "string"
}
},
"third-party": {
"type": "array",
"items": {
"type": "string"
}
}
},
"additionalProperties": {
"type": "array",
"items": {
Expand Down Expand Up @@ -2853,7 +2885,8 @@
"py311",
"py312",
"py313",
"py314"
"py314",
"py315"
]
},
"Quote": {
Expand Down Expand Up @@ -2927,6 +2960,13 @@
"boolean",
"null"
]
},
"strictly-empty-init-modules": {
"description": "Whether to require `__init__.py` files to contain no code at all, including imports and\ndocstrings (see `RUF067`).",
"type": [
"boolean",
"null"
]
}
},
"additionalProperties": false
Expand All @@ -2952,6 +2992,7 @@
"AIR30",
"AIR301",
"AIR302",
"AIR303",
"AIR31",
"AIR311",
"AIR312",
Expand Down Expand Up @@ -4047,11 +4088,14 @@
"RUF064",
"RUF065",
"RUF066",
"RUF067",
"RUF1",
"RUF10",
"RUF100",
"RUF101",
"RUF102",
"RUF103",
"RUF104",
"RUF2",
"RUF20",
"RUF200",
Expand Down
Loading