* Sync PSRule Schema

* Bump change log

Co-authored-by: BernieWhite <BernieWhite@users.noreply.github.com>
Co-authored-by: Bernie White <bewhite@microsoft.com>
This commit is contained in:
github-actions[bot] 2022-08-26 21:52:06 +10:00 коммит произвёл GitHub
Родитель 6eb7d376b3
Коммит 77bc92cda8
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
3 изменённых файлов: 2476 добавлений и 1294 удалений

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

@ -17,6 +17,8 @@ Continue reading to see the changes included in the latest version.
What's changed since v2.3.0:
- Engineering:
- Updated PSRule schema files.
[#812](https://github.com/microsoft/PSRule-vscode/pull/812)
- Bumps vscode engine to v1.70.0.
[#800](https://github.com/microsoft/PSRule-vscode/pull/800)
- Bump vsce to v2.10.2.

Разница между файлами не показана из-за своего большого размера Загрузить разницу

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

@ -257,8 +257,28 @@
"execution-option": {
"type": "object",
"title": "Execution options",
"description": "Options that affect rule execution.",
"description": "Options that affect execution.",
"markdownDescription": "Options that affect execution. [See help](https://aka.ms/ps-rule/options)",
"properties": {
"aliasReferenceWarning": {
"type": "boolean",
"title": "Warn on resource aliases",
"description": "Enable or disable warnings when an alias to a resource is used. The default is true.",
"markdownDescription": "Enable or disable warnings when an alias to a resource is used. The default is `true`. [See help](https://microsoft.github.io/PSRule/v2/concepts/PSRule/en-US/about_PSRule_Options/#executionaliasreferencewarning)",
"default": true
},
"duplicateResourceId": {
"type": "string",
"title": "Duplicate resource identifiers",
"description": "Determines how to handle duplicate resources identifiers during execution. Regardless of the value, only the first resource will be used. By defaut, an error is thrown. When set to Warn, a warning is generated. When set to Ignore, no output will be displayed.",
"markdownDescription": "Determines how to handle duplicate resources identifiers during execution.\n\nRegardless of the value, only the first resource will be used. By defaut, an error is thrown. When set to `Warn`, a warning is generated. When set to `Ignore`, no output will be displayed. [See help](https://microsoft.github.io/PSRule/v2/concepts/PSRule/en-US/about_PSRule_Options/#executionduplicateresourceid)",
"enum": [
"Ignore",
"Warn",
"Error"
],
"default": "Error"
},
"languageMode": {
"type": "string",
"title": "Language mode",
@ -291,13 +311,6 @@
"markdownDescription": "Enable or disable warnings for suppressed rules. The default is `true`. [See help](https://microsoft.github.io/PSRule/v2/concepts/PSRule/en-US/about_PSRule_Options/#executionsuppressedrulewarning)",
"default": true
},
"aliasReferenceWarning": {
"type": "boolean",
"title": "Warn on resource aliases",
"description": "Enable or disable warnings when an alias to a resource is used. The default is true.",
"markdownDescription": "Enable or disable warnings when an alias to a resource is used. The default is `true`. [See help](https://microsoft.github.io/PSRule/v2/concepts/PSRule/en-US/about_PSRule_Options/#executionaliasreferencewarning)",
"default": true
},
"invariantCultureWarning": {
"type": "boolean",
"title": "Warn on invariant culture",
@ -776,8 +789,8 @@
"url": {
"type": "string",
"title": "Repository URL",
"description": "The URL to the repository.",
"markdownDescription": "The URL to the repository."
"description": "Sets the repository URL reported in output. By default, the repository URL is detected from environment variables set by the build system.",
"markdownDescription": "Sets the repository URL reported in output. By default, the repository URL is detected from environment variables set by the build system. [See help](https://microsoft.github.io/PSRule/v2/concepts/PSRule/en-US/about_PSRule_Options/#repositoryurl)"
}
},
"additionalProperties": false