File tree Expand file tree Collapse file tree 2 files changed +15
-3
lines changed
extensions/typescript-language-features Expand file tree Collapse file tree 2 files changed +15
-3
lines changed Original file line number Diff line number Diff line change 1116
1116
" inline" ,
1117
1117
" first"
1118
1118
],
1119
- "default" : " auto"
1119
+ "default" : " auto" ,
1120
+ "markdownEnumDescriptions" : [
1121
+ " %typescript.preferences.organizeImports.typeOrder.auto%" ,
1122
+ " %typescript.preferences.organizeImports.typeOrder.last%" ,
1123
+ " %typescript.preferences.organizeImports.typeOrder.inline%" ,
1124
+ " %typescript.preferences.organizeImports.typeOrder.first%"
1125
+ ]
1120
1126
},
1121
1127
"unicodeCollation" : {
1122
1128
"type" : " string" ,
1180
1186
" inline" ,
1181
1187
" first"
1182
1188
],
1183
- "default" : " auto"
1189
+ "default" : " auto" ,
1190
+ "markdownEnumDescriptions" : [
1191
+ " %typescript.preferences.organizeImports.typeOrder.auto%" ,
1192
+ " %typescript.preferences.organizeImports.typeOrder.last%" ,
1193
+ " %typescript.preferences.organizeImports.typeOrder.inline%" ,
1194
+ " %typescript.preferences.organizeImports.typeOrder.first%"
1195
+ ]
1184
1196
},
1185
1197
"unicodeCollation" : {
1186
1198
"type" : " string" ,
Original file line number Diff line number Diff line change @@ -201,7 +201,7 @@ export default class FileConfigurationManager extends Disposable {
201
201
interactiveInlayHints : true ,
202
202
includeCompletionsForModuleExports : config . get < boolean > ( 'suggest.autoImports' ) ,
203
203
...getInlayHintsPreferences ( config ) ,
204
- ...this . getOrganizeImportsPreferences ( config ) ,
204
+ ...this . getOrganizeImportsPreferences ( preferencesConfig ) ,
205
205
} ;
206
206
207
207
return preferences ;
You can’t perform that action at this time.
0 commit comments