Indent (a multiline) righthand side list assignment.
Meaning, for a (multiline) Statements.Right CommandExpressionAst (as apposed to a PipelineAst), I would like the righthand side to (optionally?) increase the indent:
Wrong way (?)
$List =
'One',
'Two',
'Three'
Correct way
$List =
'One',
'Two',
'Three'
Wrong way (?)
$4 = # or any lengthy variable name aka dot notation
2 + 2
Correct way
$4 = # or any lengthy variable name aka dot notation
2 + 2
Indent (a multiline) righthand side list assignment.
Meaning, for a (multiline)
Statements.RightCommandExpressionAst(as apposed to aPipelineAst), I would like the righthand side to (optionally?) increase the indent:Wrong way (?)
Correct way
Wrong way (?)
Correct way