File tree Expand file tree Collapse file tree 2 files changed +3
-10
lines changed Expand file tree Collapse file tree 2 files changed +3
-10
lines changed Original file line number Diff line number Diff line change 280
280
"type" :" boolean" ,
281
281
"default" : true ,
282
282
"description" : " A new line must follow an open brace."
283
- },
284
- "powershell.codeformatting.indentationSize" :{
285
- "type" :" number" ,
286
- "default" : 4 ,
287
- "description" : " The indentation size in number of Space characters."
288
283
}
289
284
}
290
285
}
Original file line number Diff line number Diff line change @@ -9,12 +9,11 @@ import vscode = require('vscode');
9
9
export interface ICodeFormattingSettings {
10
10
openBraceOnSameLine : boolean ;
11
11
newLineAfterOpenBrace : boolean ;
12
- indentationSize : number ;
13
12
}
14
13
15
14
export interface IScriptAnalysisSettings {
16
- enable ?: boolean
17
- settingsPath : string
15
+ enable ?: boolean ;
16
+ settingsPath : string ;
18
17
}
19
18
20
19
export interface IDeveloperSettings {
@@ -49,8 +48,7 @@ export function load(myPluginId: string): ISettings {
49
48
50
49
let defaultCodeFormattingSettings : ICodeFormattingSettings = {
51
50
openBraceOnSameLine : true ,
52
- newLineAfterOpenBrace : true ,
53
- indentationSize : 4
51
+ newLineAfterOpenBrace : true
54
52
} ;
55
53
56
54
return {
You can’t perform that action at this time.
0 commit comments