Skip to content

Commit

Permalink
chore(deps): bump version to 2025.01.20 (#101)
Browse files Browse the repository at this point in the history
Co-authored-by: pyproject-schema-store-bot[bot] <181761350+pyproject-schema-store-bot[bot]@users.noreply.github.com>
  • Loading branch information
pyproject-schema-store-bot[bot] authored Jan 22, 2025
1 parent 4224a44 commit 3cafcda
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 1 deletion.
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 = "2025.01.10"
version = "2025.01.20"
authors = [
{ name = "Henry Schreiner", email = "[email protected]" },
]
Expand Down
51 changes: 51 additions & 0 deletions src/validate_pyproject_schema_store/resources/ruff.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -1244,6 +1244,26 @@
"items": {
"type": "string"
}
},
"warns-extend-require-match-for": {
"description": "List of additional warning names that require a match= parameter in a `pytest.warns()` call. This extends the default list of warnings that require a match= parameter.\n\nThis option is useful if you want to extend the default list of warnings that require a match= parameter without having to specify the entire list.\n\nNote that this option does not remove any warnings from the default list.\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"
],
"items": {
"type": "string"
}
},
"warns-require-match-for": {
"description": "List of warning names that require a match= parameter in a `pytest.warns()` call.\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"
],
"items": {
"type": "string"
}
}
},
"additionalProperties": false
Expand Down Expand Up @@ -2277,6 +2297,17 @@
}
]
},
"pydoclint": {
"description": "Options for the `pydoclint` plugin.",
"anyOf": [
{
"$ref": "#/definitions/PydoclintOptions"
},
{
"type": "null"
}
]
},
"pydocstyle": {
"description": "Options for the `pydocstyle` plugin.",
"anyOf": [
Expand Down Expand Up @@ -2526,6 +2557,19 @@
},
"additionalProperties": false
},
"PydoclintOptions": {
"type": "object",
"properties": {
"ignore-one-line-docstrings": {
"description": "Skip docstrings which fit on a single line.\n\nNote: The corresponding setting in `pydoclint` is named `skip-checking-short-docstrings`.",
"type": [
"boolean",
"null"
]
}
},
"additionalProperties": false
},
"PydocstyleOptions": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -3258,6 +3302,7 @@
"FURB116",
"FURB118",
"FURB12",
"FURB122",
"FURB129",
"FURB13",
"FURB131",
Expand Down Expand Up @@ -3696,6 +3741,11 @@
"PT025",
"PT026",
"PT027",
"PT028",
"PT029",
"PT03",
"PT030",
"PT031",
"PTH",
"PTH1",
"PTH10",
Expand Down Expand Up @@ -3879,6 +3929,7 @@
"RUF055",
"RUF056",
"RUF057",
"RUF058",
"RUF1",
"RUF10",
"RUF100",
Expand Down

0 comments on commit 3cafcda

Please sign in to comment.