Open
Description
I'm working with Jekyll for GitHub Pages, which uses the Ruby gem for parsing YAML. This gem prefers this spacing in Arrays:
---
simple_val: Testing 1
object_val:
sub_object_val: Testing 2
array_val:
- Testing 3
- Testing 4
However, when auto-formatter is on, this gets converted to:
---
simple_val: Testing 1
object_val:
sub_object_val: Testing 2
array_val:
- Testing 3
- Testing 4
Regardless of preference, it would be great to have an option to disable adding space indention for arrays.