Remove presets for now

https://github.com/microsoft/typescript/issues/59579
This commit is contained in:
Matt Bierner
2024-08-16 13:01:03 -07:00
parent 2360f3d014
commit ddbe321368
3 changed files with 112 additions and 34 deletions

View File

@@ -187,12 +187,8 @@
"typescript.preferences.renameShorthandProperties.deprecationMessage": "The setting 'typescript.preferences.renameShorthandProperties' has been deprecated in favor of 'typescript.preferences.useAliasesForRenames'",
"typescript.preferences.useAliasesForRenames": "Enable/disable introducing aliases for object shorthand properties during renames.",
"typescript.preferences.renameMatchingJsxTags": "When on a JSX tag, try to rename the matching tag instead of renaming the symbol. Requires using TypeScript 5.1+ in the workspace.",
"typescript.preferences.organizeImports": "Preferences for organizing imports. Some presets are availible in `typescript.preferences.organizeImports.presets`",
"typescript.preferences.organizeImports.presets": "Some common presets for organizing imports. More specific options can be customized in `settings.json`",
"typescript.preferences.organizeImports.presets.auto": "Automatically detect the type order of named imports and the case sensitivity of existing imports in the file.",
"typescript.preferences.organizeImports.presets.eslintSortImports": "Eslint sort-imports default settings",
"typescript.preferences.organizeImports.presets.eslintPluginSimpleImportSort": "Eslint plugin-simple-import-sort default settings",
"typescript.preferences.organizeImports.presets.dprint": "dprint default settings",
"typescript.preferences.organizeImports": "Advanced preferences that control how imports are ordered. Presets are available in `#typescript.preferences.organizeImports.presets#`",
"javascript.preferences.organizeImports": "Advanced preferences that control how imports are ordered. Presets are available in `#javascript.preferences.organizeImports.presets#`",
"typescript.preferences.organizeImports.caseSensitivity.auto": "Detect case-sensitivity for import sorting",
"typescript.preferences.organizeImports.caseSensitivity.insensitive": "Sort imports case-insensitively",
"typescript.preferences.organizeImports.caseSensitivity.sensitive": "Sort imports case-sensitively",
@@ -202,8 +198,8 @@
"typescript.preferences.organizeImports.typeOrder.first": "Type only named imports are sorted to the end of the import list",
"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",
"typescript.preferences.organizeImports.locale": "Overrides the locale used for collation. Specify 'auto' to use the UI locale. Only applies to organizeImportsCollation: 'unicode'",
"typescript.preferences.organizeImports.caseFirst": "Indicates whether upper-case comes before lower-case. Only applies to organizeImportsCollation: 'unicode'",
"typescript.preferences.organizeImports.locale": "Overrides the locale used for collation. Specify `auto` to use the UI locale. Only applies to `organizeImportsCollation: 'unicode'`",
"typescript.preferences.organizeImports.caseFirst": "Indicates whether upper-case comes before lower-case. Only applies to `organizeImportsCollation: 'unicode'`",
"typescript.preferences.organizeImports.numericCollation": "Sort numeric strings by integer value",
"typescript.preferences.organizeImports.accentCollation": "Compare characters with diacritical marks as unequal to base character",
"typescript.workspaceSymbols.scope": "Controls which files are searched by [Go to Symbol in Workspace](https://code.visualstudio.com/docs/editor/editingevolved#_open-symbol-by-name).",