284

When I execute a Format Document command on a Vue Component.vue file VSCode replace all single quoted string with double quoted string.

In my specific case this rule conflicts with electron-vue lint configuration that require singlequote.

I don't have prettier extensions installed (no prettier.singleQuote in my setting)

How to customize VSCode to avoid this?

4

35 Answers 35

293

I don't have prettier extension installed, but after reading the possible duplicate answer I've added from scratch in my User Setting (UserSetting.json, Ctrl+, shortcut):

"prettier.singleQuote": true

A part a green warning (Unknown configuration setting) the single quotes are no more replaced.

I suspect that the prettier extension is not visible but is embedded inside the Vetur extension.

Sign up to request clarification or add additional context in comments.

4 Comments

This didn't work for me. I had to use vetur.format.defaultFormatterOptions instead. See https://vuejs.github.io/vetur/formatting.html#settings.
After opening the quick search, type ">user settings" and click "Preferences: Open User Settings". In the search box of your preferences, type "prettier.singleQuote" and click the checkbox for prettier single quote.
This didn't work for me, quote_type = single in [*.myDesiredFileExtension] section within .editorconfig file, was the solution.
html.completion.attributeDefaultValue: "singlequotes" After such a long struggling, I'll add my comment here to the top answer. The problem is, there is additional feature and additional setting that does not respect .editor config or prettier. It is html.completion.attributeDefaultValue: "singlequotes" I was testing HTML with adding new attribute, and even with all plugins disabled, it still adds double quote no matter what. This is VSCode feature, and it have separate settins, please, add this to your settings and enjoy! Consider to add this to response,
210

Well, like @user2982122 mentioned but instead of File go to Code -> Preferences -> Settings, then look for Quote, select Prettier and check both boxes

enter image description here enter image description here

3 Comments

Do you have to reload these settings for them to take effect? I have them both checked, but when I save my .jsx file the double quotes don't change to single.
That is weird, I am using this version: Release 1.14 build 1.14.0-17740
@Woodchuck, I ran into the same issue. It started working for me after restarting the VS Code.
154

For projects that use .editorconfig file by default. The formatter will ignore the rules in the settings and use the rules in .editorconfig, then you can either:

  • Remove .editorconfig file, and use your VSCode settings.
  • Add quote_type = single to the .editorconfig file regarding your file type. You can also set quote_type value to double or auto.

5 Comments

I did this and it didn't work regardless if I installed editorconfig globally or I try to sue the editorconfig for VS Code. :(
Thanks, my Angular app do use .editorconfig by default (didn't know that) and your solution fixed my problem
please consider: you may not delete .editorconfig if it is a common versioned project
Note: You should restart VSCode to apply these changes.
Thanks. Works like a charm after adding quote_type = single in my vue app (still keep .editorconfig)
95

It looks like it is a bug open for this issue: Prettier Bug

The only thing that worked was, adding this line of code in package.json:

"prettier": {
  "singleQuote": true
}

5 Comments

April 2021, only thing that worked, it is ridiculous that we need to change package.json for a local extension
2022 and using Vue 3, only this one worked for me.
I created a project by vite and only your solution work for me
You can easier do oneliner: "prettier.singleQuote": true
This is the only solution that worked for me in 2024 and using Angular
76

Please consider that .editorconfig overwrites every other configuration at the end, find the file (most probably on the root of your project), edit it and add the following:

[*]
quote_type = single

2 Comments

Open the Output tab, if this message shows: Detected local configuration (i.e. .prettierrc or .editorconfig), VS Code configuration will not be used, then this answer is the solution.
FYI, quote_type is a proposal that is not intended to be implemented by EditorConfig. See here.
47

From the vuejs/vetur issue page https://github.com/vuejs/vetur/issues/986# This solution worked for me.

In VSCodes settings.json file add this entry

"vetur.format.defaultFormatterOptions": {
  "prettier": {
    "singleQuote": true
  }
}

Comments

37

Install prettier extension and paste below code in your VSCode settings.json file

"prettier.useEditorConfig": false,
"prettier.singleQuote": true

this will ignore your .editorconfig file setting.

2 Comments

works if you want all of your other settings ruined.
this comment here is underated
22

What worked for me was setting up the .prettierrc.json config file. Put it to the root of your project with a sample config like this:

{
  "singleQuote": true,
  "trailingComma": "all",
  "tabWidth": 2,
  "semi": true,
  "arrowParens": "always"
}

After triggering the Format Document command, all works just as expected.

Side note: What comes as a bonus with this solution is that each team member gets the same formatting outputs thanks to the present config file.

1 Comment

Worked for me and instead I included the command I want within .prettierrc.js
15

For newbies like me:

From the menu Nav bar at the top: Select File -> Preferences -> Settings. In the search text box, type in Quote In the filtered list that appears below, look for the gear icon and next to it - "Prettier". Click on check box to enable "Prettier: Single Quote"

Comments

15

I add .prettierrc.js file in my main root project and write

module.exports = {
  singleQuote: true
};

2 Comments

I tried this but it throws an error: "ESLint: Failed to load config "defaults/configurations/eslint" to extend from." Best would be to add this in package.json. Solution
did you put your .prettierrc.js file in the root of the project ?
11

Try one of these solutions

  1. In vscode settings.json file add this entry "prettier.singleQuote": true
  2. In vscode if you have .editorconfig file, add this line under the root [*] symbol quote_type = single
  3. In vscode if you have .prettierrc file, add this line
{
    "singleQuote": true,
    "vetur.format.defaultFormatterOptions": {
        "prettier": {
            "singleQuote": true
        }
    }
}

1 Comment

second option worked, unfortunately the other answers in this page didn't work
11

First, install the Prettier extension. Create a .prettierrc configuration file at the root of your project. And add config like below:

{
  "trailingComma": "es5",
  "singleQuote": true,
  "jsxSingleQuote": true,
  "printWidth": 100,
  "tabWidth": 2,
  "semi": true,
  "endOfLine": "auto"
}

Comments

11

After struggling with the issue I found a useful tool. If you click on the Prettier word in the right lower corner you will get the Output window opened. In that window once you run formatting (in my case it is Alt + Shift + F) you will see all the configurations which prettier will use to format the document. So, we can clearly see that specifying the prettier in the prettier.singleQuote is wrong. It should just be singleQuote. Hence, having the .prettierrc file in my user root folder with the following contents produced the desired result:

{
    "trailingComma": "none",
    "useEditorConfig": false,
    "singleQuote": true
}

Also, make sure that you have the Prettier extension installed.

enter image description here enter image description here

Comments

10
quote_type = single

add this inside .editorconfig

# EditorConfig is awesome: https://EditorConfig.org

# top-most EditorConfig file
root = true

[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = false
insert_final_newline = false
quote_type = single

Comments

9

in .prettierrc add

{
  "arrowParens": "avoid",
  "semi": false,
  "singleQuote": true
}

Comments

9

Create a .prettierrc file in your root directory and add the following json. For single quotes add:

{
  "singleQuote": true
}

For double quotes add:

{
    "singleQuote": false
}

Comments

8

As noted by @attdona the Vetur extension includes prettier.

While you can change the prettier settings, as per the accepted answer, you can also change the formatter for specific regions of a vue component.

Here, for example, I've set Vetur to use the vscode-typescript formatter as it uses single quotes by default:

vscode vetur settings

Comments

7

I'm using typescript, for me it got resolved with checking "Tslint integration" flag under prettier settings (in vscode preferences):

vscode settings for prettier, fixing double quote auto formatting issue

1 Comment

7

It works for me to check single quote in Prettier as well tslint.autoFixOnSave as true

enter image description here

enter image description here

Comments

7

In my case, the problem was in the escaping \ character inside the string:

message = 'Error argument is not an object, it\'s ' + typeof error

Turning on the avoidEscape option and using double quotes for that string solved the problem:

message = "Error argument is not an object, it's " + typeof error

.eslintrc.js

module.exports = {
  rules : {
    // Other rules...
    'quotes' : ['error', 'single', {'avoidEscape' : true}],
  }
}

Comments

7

Go to Settings, then look for Quote Double, and select JavaScript Preferences

enter image description here

or add this to VS settings.json

"javascript.preferences.quoteStyle": "double"

or

"javascript.preferences.quoteStyle": "single"

Comments

7

Only for Angular Projects:

Just go into your project ".editorconfig" file and paste 'quote_type = single'.

1 Comment

i needed this solution specifically for an angular project as well, all other chnages to prettier settings did not work.
6

I added file called .prettierrc in my project folder. File content:

{
    "singleQuote": true,
    "vetur.format.defaultFormatterOptions": {
        "prettier": {
            "singleQuote": true
        }
    }
}

Comments

5

You can use this in settings.json

"javascript.preferences.quoteStyle": "single"

Comments

3

For JSX use:

{"jsxSingleQuote": false}

Comments

3

Use this extension.

https://marketplace.visualstudio.com/items?itemName=BriteSnow.vscode-toggle-quotes

cmd ' (ctrl ' on win/Linux) will cycle among ' " `

Comments

2

I had a lot of issues controlling linting and prettier formating. I had rules for eslint on for prettier like

"prettier/prettier": [
      "error",
      { "singleQuote": true, "trailingComma": "none" }
    ],

and rules inside .prettierrc file

{
  "tabWidth": 2
}

But my .prettierrc file was not getting processed. My fix was installing prettier as a package on dev dependency. So the solution that worked for me was installing all these packages eslint-config-prettier eslint-plugin-prettier and prettier.

Comments

1

If you're using a YAML plugin, it also has a single/double quote option that was tripping me up. enter image description here

Comments

1

Try right click on the current document
and choose "format document with " ,
and choose your own format extension for the document.

1 Comment

This worked for me. I had correct prettier settings and the correct entries in .editorconfig but double quotes were not replaced with single ones on save. I fight clicked and chose Format Document With... and setup the default formatter from the two choices. Started working after that.
1

Well for me both options solved the issue:

  1. By adding inside the .prettierrc - "singleQuote": true

  2. Or by adding following inside the package.json -> "prettier": { "singleQuote": true }

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.