mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-23 19:59:37 +00:00
@@ -785,6 +785,11 @@
|
||||
],
|
||||
"default": "auto",
|
||||
"markdownDescription": "%typescript.preferences.quoteStyle%",
|
||||
"markdownEnumDescriptions": [
|
||||
"%typescript.preferences.quoteStyle.auto%",
|
||||
"%typescript.preferences.quoteStyle.single%",
|
||||
"%typescript.preferences.quoteStyle.double%"
|
||||
],
|
||||
"scope": "language-overridable"
|
||||
},
|
||||
"typescript.preferences.quoteStyle": {
|
||||
@@ -796,6 +801,11 @@
|
||||
],
|
||||
"default": "auto",
|
||||
"markdownDescription": "%typescript.preferences.quoteStyle%",
|
||||
"markdownEnumDescriptions": [
|
||||
"%typescript.preferences.quoteStyle.auto%",
|
||||
"%typescript.preferences.quoteStyle.single%",
|
||||
"%typescript.preferences.quoteStyle.double%"
|
||||
],
|
||||
"scope": "language-overridable"
|
||||
},
|
||||
"javascript.preferences.importModuleSpecifier": {
|
||||
|
||||
@@ -113,7 +113,10 @@
|
||||
"taskDefinition.tsconfig.description": "The tsconfig file that defines the TS build.",
|
||||
"javascript.suggestionActions.enabled": "Enable/disable suggestion diagnostics for JavaScript files in the editor.",
|
||||
"typescript.suggestionActions.enabled": "Enable/disable suggestion diagnostics for TypeScript files in the editor.",
|
||||
"typescript.preferences.quoteStyle": "Preferred quote style to use for quick fixes: `single` quotes, `double` quotes, or `auto` infer quote type from existing imports.",
|
||||
"typescript.preferences.quoteStyle": "Preferred quote style to use for quick fixes.",
|
||||
"typescript.preferences.quoteStyle.single": "Always use single quotes: `'`",
|
||||
"typescript.preferences.quoteStyle.double": "Always use double quotes: `\"`",
|
||||
"typescript.preferences.quoteStyle.auto": "Infer quote type from existing code",
|
||||
"typescript.preferences.importModuleSpecifier": "Preferred path style for auto imports.",
|
||||
"typescript.preferences.importModuleSpecifier.shortest": "Prefers a non-relative import only if one is available that has fewer path segments than a relative import.",
|
||||
"typescript.preferences.importModuleSpecifier.relative": "Prefers a relative path to the imported file location.",
|
||||
|
||||
Reference in New Issue
Block a user