diff --git a/pyproject.toml b/pyproject.toml index 5523a21..3fb36f4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "hatchling.build" [project] name = "validate-pyproject-schema-store" -version = "2024.11.11" +version = "2024.11.18" authors = [ { name = "Henry Schreiner", email = "henryfs@princeton.edu" }, ] diff --git a/src/validate_pyproject_schema_store/resources/black.schema.json b/src/validate_pyproject_schema_store/resources/black.schema.json index b77dedc..982d940 100644 --- a/src/validate_pyproject_schema_store/resources/black.schema.json +++ b/src/validate_pyproject_schema_store/resources/black.schema.json @@ -27,7 +27,8 @@ "py39", "py310", "py311", - "py312" + "py312", + "py313" ] }, "description": "Python versions that should be supported by Black's output. You should include all versions that your code supports. By default, Black will infer target versions from the project metadata in pyproject.toml. If this does not yield conclusive results, Black will use per-file auto-detection." diff --git a/src/validate_pyproject_schema_store/resources/ruff.schema.json b/src/validate_pyproject_schema_store/resources/ruff.schema.json index b7b9894..13b9adb 100644 --- a/src/validate_pyproject_schema_store/resources/ruff.schema.json +++ b/src/validate_pyproject_schema_store/resources/ruff.schema.json @@ -2756,6 +2756,16 @@ "RuffOptions": { "type": "object", "properties": { + "extend-markup-names": { + "description": "A list of additional callable names that behave like [`markupsafe.Markup`].\n\nExpects to receive a list of fully-qualified names (e.g., `webhelpers.html.literal`, rather than `literal`).\n\n[markupsafe.Markup]: https://markupsafe.palletsprojects.com/en/stable/escaping/#markupsafe.Markup", + "type": [ + "array", + "null" + ], + "items": { + "type": "string" + } + }, "parenthesize-tuple-in-subscript": { "description": "Whether to prefer accessing items keyed by tuples with parentheses around the tuple (see `RUF031`).", "type": [ @@ -3014,6 +3024,9 @@ "DTZ01", "DTZ011", "DTZ012", + "DTZ9", + "DTZ90", + "DTZ901", "E", "E1", "E10", @@ -3307,6 +3320,8 @@ "LOG002", "LOG007", "LOG009", + "LOG01", + "LOG015", "N", "N8", "N80", @@ -3602,6 +3617,7 @@ "PLW15", "PLW150", "PLW1501", + "PLW1507", "PLW1508", "PLW1509", "PLW151", @@ -3817,6 +3833,8 @@ "RUF032", "RUF033", "RUF034", + "RUF035", + "RUF036", "RUF1", "RUF10", "RUF100",