~~ lineWidth: 40 ~~
== should format array ==
values = [ 1, 2, 3 ]

[expect]
values = [1, 2, 3]

== should handle comments in array ==
values = [ # start
  # leading comment
  # testing
  1, # 1
  2, # 2
  # inner comment
  3 # 3
  # trailing comment
] # end

[expect]
values = [ # start
  # leading comment
  # testing
  1, # 1
  2, # 2
  # inner comment
  3, # 3
  # trailing comment
] # end

== should keep blank lines in the middle ==
values = [

  123456789012345466798,

  2,
  3,


  4,

]

[expect]
values = [
  123456789012345466798,

  2,
  3,

  4,
]
