YAML Sort extends VS Code to sort, format and validate YAML files.
This extension contributes the following commands:
Command | Description |
---|---|
Custom Sort 1 |
This command will sort a given YAML with custom order. If some of the keys of customSortKeywords_1 will be found at the top level of the YAML, these will be put at the beginning of the YAML file (in the given order). You can use this e. g. to sort Kubernetes configmaps. |
Custom Sort 2 |
Same as Custom Sort 1 |
Custom Sort 3 |
Same as Custom Sort 1 |
Format Document |
Formats a yaml document without sorting it. Also possible using the shortcut (⇧⌥F on Mac). |
Recursively sort YAML files |
Sorts all .yaml and .yml files in a directory and all its subdirectories. |
Sort YAML |
Sorts a given YAML. You can either sort the whole YAML document or sort only a selection of the text. |
Validate YAML |
Validates a given YAML. |
This extension contributes the following settings:
Setting | Description | Default |
---|---|---|
emptyLinesUntilLevel |
When bigger than 0 , will add a new line before each keyword on level n. |
0 |
customSortKeywords_1 |
List of keywords for Custom Sort 1 |
["apiVersion", "kind", "metadata", "spec", "data"] |
customSortKeywords_2 |
List of keywords for Custom Sort 2 |
- |
customSortKeywords_3 |
List of keywords for Custom Sort 3 |
- |
extensions |
Extensions to be processed with command Recursively sort YAML files |
["yaml", "yml"] |
forceQuotes |
When true , all non-key strings will be quoted even if they normally don't need to. |
false |
indent |
Indentation width in spaces | 2 |
lineWidth |
Maximum line width for YAML files | 500 |
locale |
Language whose sort order should be used | en |
noArrayIndent |
When true , will not add an indentation level to array elements. |
false |
noCompatMode |
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 |
false |
notifySuccess |
When true , will notify on successfully performed tasks. |
true |
quotingType |
Strings will be quoted using this quoting style. If you specify single quotes, double quotes will still be used for non-printable characters. | ' |
schema |
Schema to use. Possible values are HOMEASSISTANT_SCHEMA , CLOUDFORMATION_SCHEMA , CORE_SCHEMA , DEFAULT_SCHEMA , FAILSAFE_SCHEMA , JSON_SCHEMA . |
DEFAULT_SCHEMA |
sortArrays |
When true , will sort arrays |
false |
sortOnSave |
When 0 , will sort files when saving document. When 1 , 2 or 3 , will use customSortKeywords. Set to negative value to disable sortOnSave. Only works in combination with editor.formatOnSave set to true . |
0 |
sortOrderReverse |
When true , will sort in reverse order |
false |
useAsFormatter |
When true , will enable default YAML formatter (requires restart). |
false |
useCustomSortRecursively |
When true , will use the custom sort keywords recursively on a file, when using custom sort. |
false |
useLeadingDashes |
When true , sorted YAML files begin with leading dashes. |
true |
useArrayProcessor |
When true , will activate ArrayProcessor. |
true |
useBlockProcessor |
When true , will activate BlockProcessor. |
true |
useCommentProcessor |
When true , will activate CommentProcessor. |
true |
useHelmProcessor |
When true , will activate HelmProcessor. |
true |
useOctalProcessor |
When true , will activate OctalProcessor. |
true |
Register this extension as VS Code formatter. Also configure VS Code to format files on save. Caution: This setting will apply for all files. Changes will require a restart of VS Code. If you wish to also sort (not only format) the file on saving, set sortOnSave
to 0
. Use 1
, 2
or 3
for custom sort.
{
"editor.formatOnSave": true,
"vscode-yaml-sort.sortOnSave": 0
}
There are different types of processors. If you experience any issues with them, or just don't want to use them, you can turn them off.
The ArrayProcessor will not add linebreaks to single-line array structures.
Original Document | Sorted withuseArrayProcessor: true |
Sorted withuseArrayProcessor: false |
---|---|---|
test: [ "CMD", "pg_isready"] |
test: [ "CMD", "pg_isready"] |
test: |
The BlockProcessor will keep block sequences.
Original Document | Sorted withuseBlockProcessor: true |
Sorted withuseBlockProcessor: false |
---|---|---|
hello: |- |
hello: |- |
hello: World |
An activated Comment Processor will keep comments while sorting.
Original Document | Sorted withuseCommentProcessor: true |
Sorted withuseCommentProcessor: false |
---|---|---|
# comment |
# comment |
foo: bar |
The Helm Processor makes the extension compatible with Helm charts.
Original Document | Sorted withuseHelmProcessor: true |
Sorted withuseHelmProcessor: false |
---|---|---|
foo: {{ .value }} |
foo: {{ .value }} |
foo: |
The Spacing Processor will add spacing between keywords.
Original Document | Sorted withemptyLinesUntilLevel: 0 |
Sorted withemptyLinesUntilLevel: 1 |
---|---|---|
foo: bar |
foo: bar |
foo: bar |
The Octal Processor makes the extension keeping octal value like 0744.
Original Document | Sorted withuseOctalProcessor: true |
Sorted withuseOctalProcessor: false |
---|---|---|
foo: 0744 |
foo: 0744 |
foo: 484 |
If you like YAML Sort, please feel free to rate it on the marketplace.
If you miss something or found a bug, please let me know and open an issue on this project on GitHub. Do not hesitate to open a pull request with your changes.
Check open issues on GitHub.
Be careful with anchors and references, these don't work very well in this extension.
YAML Sort is licensed under the MIT License.