"description": "When bigger than 0, will add a new line before each keyword on level n."
},
"vscode-yaml-sort.customSortKeywords_1": {
"type": "array",
"items": {
"type": "string"
},
"default": [
"apiVersion",
"kind",
"metadata",
"spec",
"data"
],
"description": "List of keywords for Custom Sort 1."
},
"vscode-yaml-sort.customSortKeywords_2": {
"type": "array",
"items": {
"type": "string"
},
"default": [],
"description": "List of keywords for Custom Sort 2."
},
"vscode-yaml-sort.customSortKeywords_3": {
"type": "array",
"items": {
"type": "string"
},
"default": [],
"description": "List of keywords for Custom Sort 3."
},
"vscode-yaml-sort.extensions": {
"type": "array",
"items": {
"type": "string"
},
"default": [
"yaml",
"yml"
],
"description": "Files with matching extensions will be processed in recursive sort"
},
"vscode-yaml-sort.forceQuotes": {
"type": "boolean",
"default": false,
"description": "When true, all non-key strings will be quoted even if they normally don't need to."
},
"vscode-yaml-sort.indent": {
"type": "integer",
"default": 2,
"description": "Indentation width in spaces."
},
"vscode-yaml-sort.lineWidth": {
"type": "integer",
"default": 500,
"description": "Maximum line width for YAML files."
},
"vscode-yaml-sort.locale": {
"type": "string",
"default": "en",
"description": "Language whose sort order should be used."
},
"vscode-yaml-sort.noArrayIndent": {
"type": "boolean",
"default": false,
"description": "When true, will not add an indentation level to array elements."
},
"vscode-yaml-sort.noCompatMode": {
"type": "boolean",
"default": false,
"description": "When true, don't try to be compatible with older yaml versions. Currently: don't quote 'yes', 'no' and so on, as required for YAML 1.1"
},
"vscode-yaml-sort.notifySuccess": {
"type": "boolean",
"default": true,
"description": "When true, will notify on successfully performed tasks."
},
"vscode-yaml-sort.quotingType": {
"type": "string",
"default": "'",
"enum": [
"'",
"\""
],
"description": "Strings will be quoted using this quoting style. If you specify single quotes, double quotes will still be used for non-printable characters."
},
"vscode-yaml-sort.schema": {
"type": "string",
"default": "DEFAULT_SCHEMA",
"enum": [
"HOMEASSISTANT_SCHEMA",
"CLOUDFORMATION_SCHEMA",
"CORE_SCHEMA",
"DEFAULT_SCHEMA",
"FAILSAFE_SCHEMA",
"JSON_SCHEMA"
],
"description": "Schema to use"
},
"vscode-yaml-sort.sortArrays": {
"type": "boolean",
"default": false,
"description": "When `true`, will sort arrays"
},
"vscode-yaml-sort.sortOrderReverse": {
"type": "boolean",
"default": false,
"description": "When `true`, will sort in reverse order"
},
"vscode-yaml-sort.sortOnSave": {
"type": "number",
"default": 0,
"description": "When `0`, will sort files when saving. When `1`, `2` or `3`, will use customSortKeywords. Set to negative value to disable sortOnSave."
},
"vscode-yaml-sort.useCustomSortRecursively": {
"type": "boolean",
"default": false,
"description": "When true, will use the custom sort keywords recursively on a file, when using custom sort"
},
"vscode-yaml-sort.useLeadingDashes": {
"type": "boolean",
"default": true,
"description": "Define if sorted YAML files should begin with leading dashes."
},
"vscode-yaml-sort.useArrayProcessor": {
"type": "boolean",
"default": true,
"description": "When `true`, will activate ArrayProcessor"
},
"vscode-yaml-sort.useBlockProcessor": {
"type": "boolean",
"default": true,
"description": "When `true`, will activate BlockProcessor"
},
"vscode-yaml-sort.useCommentProcessor": {
"type": "boolean",
"default": true,
"description": "When `true`, will activate CommentProcessor"
},
"vscode-yaml-sort.useHelmProcessor": {
"type": "boolean",
"default": true,
"description": "When `true`, will activate HelmProcessor"
},
"vscode-yaml-sort.useOctalProcessor": {
"type": "boolean",
"default": true,
"description": "When `true`, will activate OctalProcessor"