dprint-plugin-dockerfile 0.4.0

A WIP dockerfile formatter for dprint.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
== should normalize the exec array ==
SHELL    [   "powershell"   ,    "-command"   ]
SHELL ["cmd","/S","/C"]

[expect]
SHELL ["powershell", "-command"]
SHELL ["cmd", "/S", "/C"]

== should keep a single element ==
SHELL  [ "/bin/sh" ]

[expect]
SHELL ["/bin/sh"]