diff --git a/src/schemas/json/ruff.json b/src/schemas/json/ruff.json index 91bd251f946..6fd85cc9b88 100644 --- a/src/schemas/json/ruff.json +++ b/src/schemas/json/ruff.json @@ -131,7 +131,7 @@ } }, "extension": { - "description": "A mapping of custom file extensions to known file types (overridden\nby the `--extension` command-line flag).\n\nSupported file types include `python`, `pyi`, `ipynb`, and `markdown`.", + "description": "A mapping of custom file extensions to known file types (overridden\nby the `--extension` command-line flag).\n\nSupported file types include `python`, `pyi`, `ipynb`, and `markdown`.\n\nAny file extensions listed here will be automatically added to the\ndefault `include` list as a `*.{ext}` glob, so that they are linted\nand formatted without needing any additional configuration settings.", "type": ["object", "null"], "additionalProperties": { "$ref": "#/definitions/Language" @@ -2688,6 +2688,8 @@ "D417", "D418", "D419", + "D42", + "D420", "DJ", "DJ0", "DJ00", @@ -3261,6 +3263,7 @@ "PLR1708", "PLR171", "PLR1711", + "PLR1712", "PLR1714", "PLR1716", "PLR172", @@ -3584,6 +3587,8 @@ "RUF067", "RUF068", "RUF069", + "RUF07", + "RUF070", "RUF1", "RUF10", "RUF100",