Does prettier format vue code not work after vscode is updated to the latest version?

after updating vscode to the latest version, format the vue code with prettier. I originally set

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

it works to remove the semicolon and uniformly use the""sign when formatting before, but it doesn"t work after the update. Which god knows what"s going on?


I also encountered that the semicolon at the end cannot go after formatting


the same problem is at a loss


has the landlord solved it? can you help me thank you


create a new .prettierrc.json file and configure the following code blocks:

{
    "singleQuote": true,
    "semi": false
}
Menu