@@ -14,6 +14,12 @@ enum CodeFormattingPreset {
1414 Stroustrup ,
1515}
1616
17+ enum PipelineIndentationStyle {
18+ IncreaseIndentationForFirstPipeline ,
19+ IncreaseIndentationAfterEveryPipeline ,
20+ NoIndentation ,
21+ }
22+
1723export enum HelpCompletion {
1824 Disabled = "Disabled" ,
1925 BlockComment = "BlockComment" ,
@@ -39,6 +45,7 @@ export interface ICodeFormattingSettings {
3945 openBraceOnSameLine : boolean ;
4046 newLineAfterOpenBrace : boolean ;
4147 newLineAfterCloseBrace : boolean ;
48+ pipelineIndentationStyle : PipelineIndentationStyle ;
4249 whitespaceBeforeOpenBrace : boolean ;
4350 whitespaceBeforeOpenParen : boolean ;
4451 whitespaceAroundOperator : boolean ;
@@ -125,6 +132,7 @@ export function load(): ISettings {
125132 openBraceOnSameLine : true ,
126133 newLineAfterOpenBrace : true ,
127134 newLineAfterCloseBrace : true ,
135+ pipelineIndentationStyle : PipelineIndentationStyle . IncreaseIndentationForFirstPipeline ,
128136 whitespaceBeforeOpenBrace : true ,
129137 whitespaceBeforeOpenParen : true ,
130138 whitespaceAroundOperator : true ,
0 commit comments