@@ -14,6 +14,12 @@ enum CodeFormattingPreset {
14
14
Stroustrup ,
15
15
}
16
16
17
+ enum PipelineIndentationStyle {
18
+ IncreaseIndentationForFirstPipeline ,
19
+ IncreaseIndentationAfterEveryPipeline ,
20
+ NoIndentation ,
21
+ }
22
+
17
23
export enum HelpCompletion {
18
24
Disabled = "Disabled" ,
19
25
BlockComment = "BlockComment" ,
@@ -39,6 +45,7 @@ export interface ICodeFormattingSettings {
39
45
openBraceOnSameLine : boolean ;
40
46
newLineAfterOpenBrace : boolean ;
41
47
newLineAfterCloseBrace : boolean ;
48
+ pipelineIndentationStyle : PipelineIndentationStyle ;
42
49
whitespaceBeforeOpenBrace : boolean ;
43
50
whitespaceBeforeOpenParen : boolean ;
44
51
whitespaceAroundOperator : boolean ;
@@ -125,6 +132,7 @@ export function load(): ISettings {
125
132
openBraceOnSameLine : true ,
126
133
newLineAfterOpenBrace : true ,
127
134
newLineAfterCloseBrace : true ,
135
+ pipelineIndentationStyle : PipelineIndentationStyle . IncreaseIndentationForFirstPipeline ,
128
136
whitespaceBeforeOpenBrace : true ,
129
137
whitespaceBeforeOpenParen : true ,
130
138
whitespaceAroundOperator : true ,
0 commit comments