vscode-yaml icon indicating copy to clipboard operation
vscode-yaml copied to clipboard

Add option to ignore spacing on lists

Open droslean opened this issue 1 year ago • 0 comments

Since this plugin is with built-in Kubernetes syntax, we need also an option to ignore spaces on lists.

Now the plugin forces this

my_list:
  - 1
  - 2
  - 3

But in Kubernetes we don't do that since it is using the golang YAML library which outputs the list as

my_list:
- 1
- 2
- 3

droslean avatar Sep 20 '22 08:09 droslean