brodycj / prettierx

a less opinionated fork of Prettier code formatter
MIT License
209 stars 22 forks source link

Yaml do sequence indent option #696

Open msivasubramaniaan opened 3 years ago

msivasubramaniaan commented 3 years ago
Default | CLI Override | API Override -- | -- | -- true | --no-yaml-sequence-indent  | yamlSequenceIndent:

 

Example: 

 yamlSequenceIndent: true 

sub_object_val: Testing 2 

      array_val: 

          - Testing 3 

          - Testing 4 

yamlSequenceIndent: false 

sub_object_val: Testing 2 

      array_val: 

      - Testing 3 

      - Testing 4 

brodycj commented 3 years ago

Thanks for the contribution. I may need a few weeks to take a look at this.