You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -160,14 +161,15 @@ export type Configuration = {
160
161
* */
161
162
'correctSorting.enable': boolean
162
163
/**
163
-
* Try to restore suggestion sorting after `.`
164
+
* Try to restore properties (not variables!) sorting as in source
164
165
* Experimental and most probably will be changed in future
166
+
* @recommended
165
167
* @default false
166
168
*/
167
169
fixSuggestionsSorting: boolean
168
-
// TODO
170
+
// TODO-low
169
171
/**
170
-
* Mark QuickFixes & refactorings with 🔵
172
+
* Mark refactorings with 🔵
171
173
* @default true
172
174
*/
173
175
'markTsCodeActions.enable': boolean
@@ -205,6 +207,11 @@ export type Configuration = {
205
207
* @default true
206
208
* */
207
209
'removeCodeFixes.enable': boolean
210
+
/**
211
+
* @default ["fixMissingFunctionDeclaration"]
212
+
* @uniqueItems true
213
+
* */
214
+
'removeCodeFixes.codefixes': FixId[]
208
215
/**
209
216
* Also rename name of default or namespace import on refactor caused by file move / rename
210
217
* Probably will be enabled by default in future
@@ -228,13 +235,8 @@ export type Configuration = {
228
235
*/
229
236
workspaceSymbolSearchExcludePatterns: string[]
230
237
/**
231
-
* @default ["fixMissingFunctionDeclaration"]
232
-
* @uniqueItems true
233
-
* */
234
-
'removeCodeFixes.codefixes': FixId[]
235
-
/**
236
-
* Use full-blown emmet in jsx/tsx files!
237
-
* Requires `jsxPseudoEmmet.enabled` to be disabled and `emmet.excludeLanguages` to have `javascriptreact` and `typescriptreact`
238
+
* Use strict & precise emmet in jsx/tsx files! Doesn't annoy you everywhere!
239
+
* Requires `jsxPseudoEmmet.enabled` to be disabled and `emmet.excludeLanguages` to have `javascriptreact` / `typescriptreact`
238
240
* @default true
239
241
* */
240
242
'jsxEmmet.enable': boolean
@@ -443,11 +445,11 @@ export type Configuration = {
443
445
*/
444
446
// completionHelpers: boolean
445
447
/**
446
-
* Extend TypeScript outline!
447
-
* Extend outline with:
448
+
* Extend TypeScript outline with:
448
449
* - JSX Elements
449
450
* - Type Alias Declarations
450
451
* Should be stable!
452
+
* @recommended
451
453
* @default false
452
454
*/
453
455
patchOutline: boolean
@@ -458,6 +460,7 @@ export type Configuration = {
458
460
'outline.arraysTuplesNumberedItems': boolean
459
461
/**
460
462
* Exclude covered strings/enum cases in switch in completions
463
+
* @deprecated Will be removed in next release
461
464
* @default true
462
465
*/
463
466
switchExcludeCoveredCases: boolean
@@ -520,12 +523,12 @@ export type Configuration = {
520
523
*/
521
524
'figIntegration.enableWhenStartsWith': string[]
522
525
/**
523
-
* Propose additional completions in object. Just like `typescript.suggest.objectLiteralMethodSnippets.enabled`, but also for string, arrays and objects
526
+
* Propose additional completions in object. Just like `typescript.suggest.objectLiteralMethodSnippets.enabled`, but also for strings, arrays and objects
524
527
* @default true
525
528
*/
526
529
'objectLiteralCompletions.moreVariants': boolean
527
530
/**
528
-
* When `moreVariants` enabled, always add as fallback variant if other variant can't be derived
531
+
* When `moreVariants` is enabled, always add fallback variant (`: `) if other variant can't be derived
0 commit comments