Remove output format text and use format full by default (#12010)

Resolves #7349
This commit is contained in:
Micha Reiser
2024-06-26 09:40:18 +02:00
parent c0d2f439b7
commit 41203ea208
10 changed files with 317 additions and 72 deletions

40
ruff.schema.json generated
View File

@@ -2294,21 +2294,31 @@
"additionalProperties": false
},
"OutputFormat": {
"type": "string",
"enum": [
"text",
"concise",
"full",
"json",
"json-lines",
"junit",
"grouped",
"github",
"gitlab",
"pylint",
"rdjson",
"azure",
"sarif"
"oneOf": [
{
"type": "string",
"enum": [
"concise",
"full",
"json",
"json-lines",
"junit",
"grouped",
"github",
"gitlab",
"pylint",
"rdjson",
"azure",
"sarif"
]
},
{
"deprecated": true,
"type": "string",
"enum": [
"text"
]
}
]
},
"ParametrizeNameType": {