Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

enhancement: Added missing XMLLINT schema properties #3677

Merged
merged 3 commits into from
Jun 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ Note: Can be used with `oxsecurity/megalinter@beta` in your GitHub Action mega-l
- [DevSkim](https://github.com/microsoft/DevSkim) fixed fatal errors when scanning and ability to override config path
- [Powershell](https://github.com/PowerShell/PSScriptAnalyzer#readme) added missing schema property `POWERSHELL_POWERSHELL_FORMATTER_OUTPUT_ENCODING`
- [tflint](https://github.com/terraform-linters/tflint) added missing schema property `TERRAFORM_TFLINT_SECURED_ENV`
- [xmllint](https://gitlab.gnome.org/GNOME/libxml2/-/wikis/home) added missing schema properties `XML_XMLLINT_AUTOFORMAT` and `XML_XMLLINT_INDENT`

- Doc

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22918,6 +22918,12 @@
"string"
]
},
"XML_XMLLINT_AUTOFORMAT": {
"$id": "#/properties/XML_XMLLINT_AUTOFORMAT",
"default": false,
"title": "XML_XMLLINT: If set to `true`, it will reformat and reindent the output",
"type": "boolean"
},
"XML_XMLLINT_CLI_EXECUTABLE": {
"$id": "#/properties/XML_XMLLINT_CLI_EXECUTABLE",
"default": [
Expand Down Expand Up @@ -23004,6 +23010,12 @@
"title": "XML_XMLLINT: Including Regex",
"type": "string"
},
"XML_XMLLINT_INDENT": {
"$id": "#/properties/XML_XMLLINT_INDENT",
"default": " ",
"title": "XML_XMLLINT: The number of indentation spaces when `XML_XMLLINT_AUTOFORMAT` is `true`",
"type": "string"
},
"XML_XMLLINT_POST_COMMANDS": {
"$id": "#/properties/XML_XMLLINT_POST_COMMANDS",
"examples": [
Expand Down