@@ -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 ;
@@ -128,6 +135,7 @@ export function load(): ISettings {
128135 openBraceOnSameLine : true ,
129136 newLineAfterOpenBrace : true ,
130137 newLineAfterCloseBrace : true ,
138+ pipelineIndentationStyle : PipelineIndentationStyle . IncreaseIndentationForFirstPipeline ,
131139 whitespaceBeforeOpenBrace : true ,
132140 whitespaceBeforeOpenParen : true ,
133141 whitespaceAroundOperator : true ,
0 commit comments