fix wrong description, add examples

This commit is contained in:
Isabel Duan
2024-10-30 15:44:19 -07:00
parent 95779b7b37
commit fbbcdd4f05

View File

@@ -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.",