Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
Bernie White 2024-08-19 09:37:34 +10:00 коммит произвёл GitHub
Родитель 079bc68b2c
Коммит 1e4b776fd3
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
1 изменённых файлов: 73 добавлений и 0 удалений

Просмотреть файл

@ -301,12 +301,74 @@
},
"additionalProperties": false
},
"emitter-option": {
"type": "object",
"title": "Emitter options",
"properties": {
"yaml": {
"type": "object",
"title": "YAML",
"description": "Support for the YAML format.",
"properties": {
"include": {
"type": "array",
"title": "Include",
"description": "Additional file types to process as YAML.",
"default": []
}
},
"additionalProperties": false
},
"json": {
"type": "object",
"title": "JSON",
"description": "Support for the JSON format including support for comments.",
"properties": {
"include": {
"type": "array",
"title": "Include",
"description": "Additional file types to process as JSON.",
"default": []
}
},
"additionalProperties": false
},
"markdown": {
"type": "object",
"title": "Markdown",
"description": "Support for the Markdown format.",
"properties": {
"include": {
"type": "array",
"title": "Include",
"description": "Additional file types to process as Markdown.",
"default": []
}
},
"additionalProperties": false
}
},
"additionalProperties": false
},
"execution-option": {
"type": "object",
"title": "Execution options",
"description": "Options that affect execution.",
"markdownDescription": "Options that affect execution. [See help](https://aka.ms/ps-rule/options)",
"properties": {
"break": {
"type": "string",
"title": "Break",
"description": "Determines the minimum rule severity level that breaks the pipeline. By default, the pipeline will break if a rule of error severity fails.",
"markdownDescription": "Determines the minimum rule severity level that breaks the pipeline. By default, the pipeline will break if a rule of error severity fails.\n\n[See help](https://microsoft.github.io/PSRule/v3/concepts/PSRule/en-US/about_PSRule_Options/#executionbreak)",
"enum": [
"Never",
"OnError",
"OnWarning",
"OnInformation"
],
"default": "OnError"
},
"duplicateResourceId": {
"type": "string",
"title": "Duplicate resource identifiers",
@ -500,6 +562,13 @@
"description": "Options that affect how input types are processed.",
"markdownDescription": "Options that affect how input types are processed.",
"properties": {
"fileObjects": {
"type": "boolean",
"title": "File objects",
"description": "Determines if file objects are processed by rules.",
"markdownDescription": "Determines if file objects are processed by rules. [See help](https://microsoft.github.io/PSRule/v3/concepts/PSRule/en-US/about_PSRule_Options/#inputfileobjects)",
"default": false
},
"format": {
"type": "string",
"title": "Input format",
@ -885,6 +954,10 @@
"type": "object",
"$ref": "#/definitions/convention-option"
},
"emitter": {
"type": "object",
"$ref": "#/definitions/emitter-option"
},
"execution": {
"type": "object",
"$ref": "#/definitions/execution-option"