Add note about quote style setting to jsxAttributeCompletionStyle

For #143164
This commit is contained in:
Matt Bierner
2022-02-16 12:09:49 -08:00
parent 0a9e7a5f49
commit 1f5f486ccb
2 changed files with 3 additions and 2 deletions

View File

@@ -125,7 +125,8 @@
"typescript.preferences.importModuleSpecifierEnding.index": "Shorten `./component/index.js` to `./component/index`.",
"typescript.preferences.importModuleSpecifierEnding.js": "Do not shorten path endings; include the `.js` extension.",
"typescript.preferences.jsxAttributeCompletionStyle": "Preferred style for JSX attribute completions.",
"typescript.preferences.jsxAttributeCompletionStyle.auto": "Insert `={}` or `=\"\"` after attribute names based on the prop type.",
"javascript.preferences.jsxAttributeCompletionStyle.auto": "Insert `={}` or `=\"\"` after attribute names based on the prop type. See `javascript.preferences.quoteStyle` to control the type of quotes used for string attributes.",
"typescript.preferences.jsxAttributeCompletionStyle.auto": "Insert `={}` or `=\"\"` after attribute names based on the prop type. See `typescript.preferences.quoteStyle` to control the type of quotes used for string attributes.",
"typescript.preferences.jsxAttributeCompletionStyle.braces": "Insert `={}` after attribute names.",
"typescript.preferences.jsxAttributeCompletionStyle.none": "Only insert attribute names.",
"typescript.preferences.includePackageJsonAutoImports": "Enable/disable searching `package.json` dependencies for available auto imports.",