How can I edit the Visual Studio Code autocomplete?

Viewed 55

vscode shows single quotation for className when I write code in JSX:

className=''

but how can I edit it to:

className=""

1 Answers

The setting

Javascript > Preferences: Quote Style set to double will do what you want.

I don't see a way to limit that setting to jsx files but that may not be a problem for you.

Related