Open
Description
Prerequisites
- I have written a descriptive issue title.
- I have searched all issues to ensure it has not already been reported.
Summary
Request a setting like pipelineIndentationStyle
but for arrays.
Formatting removes my indents:
$folders = "\.git",
"\exampleSite",
"\images",
"\logo.png"
Would be nice to have:
$folders = "\.git",
"\exampleSite",
"\images",
"\logo.png"
And this (first item on new line):
$folders =
"\.git",
"\exampleSite",
"\images",
"\logo.png"
Proposed Design
No response