mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-25 19:18:59 +01:00
fix wrong description, add examples
This commit is contained in:
@@ -198,9 +198,9 @@
|
||||
"typescript.preferences.organizeImports.caseSensitivity.sensitive": "Sort imports case-sensitively.",
|
||||
"typescript.preferences.organizeImports.typeOrder": "Specify how type-only named imports should be sorted.",
|
||||
"typescript.preferences.organizeImports.typeOrder.auto": "Detect where type-only named imports should be sorted.",
|
||||
"typescript.preferences.organizeImports.typeOrder.last": "Type only named imports are sorted to the end of the import list.",
|
||||
"typescript.preferences.organizeImports.typeOrder.inline": "Named imports are sorted by name only.",
|
||||
"typescript.preferences.organizeImports.typeOrder.first": "Type only named imports are sorted to the end of the import list.",
|
||||
"typescript.preferences.organizeImports.typeOrder.last": "Type only named imports are sorted to the end of the import list. E.g. `import { B, Z, type A, type Y } from 'module';`",
|
||||
"typescript.preferences.organizeImports.typeOrder.inline": "Named imports are sorted by name only. E.g. `import { type A, B, type Y, Z } from 'module';`",
|
||||
"typescript.preferences.organizeImports.typeOrder.first": "Type only named imports are sorted to the beginning of the import list. E.g. `import { type A, type Y, B, Z } from 'module';`",
|
||||
"typescript.preferences.organizeImports.unicodeCollation": "Specify whether to sort imports using Unicode or Ordinal collation.",
|
||||
"typescript.preferences.organizeImports.unicodeCollation.ordinal": "Sort imports using the numeric value of each code point.",
|
||||
"typescript.preferences.organizeImports.unicodeCollation.unicode": "Sort imports using the Unicode code collation.",
|
||||
|
||||
Reference in New Issue
Block a user