vscode中 解决格式化后将单引号变双引号

场景:开发时,明明写的是双引号,可格式化后就全部变双引号了...

解决方案:

  进入用户设置,在setting.json中添加如下:

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

该方案也可以将原本的双引号直接变成单引号...更符合开发规范。

 

我的代码规范:仅供参考

{
    "json.format.enable": false,
    "javascript.preferences.quoteStyle": "single",
    "files.autoSave": "off",
    "editor.fontSize": 14,
    "window.zoomLevel": 0.3,
    "vetur.format.defaultFormatter.js": "vscode-typescript",
    "html.format.endWithNewline": true,
    "explorer.confirmDelete": false,
    "prettier.semi": false,
    "prettier.singleQuote": true,
    "typescript.updateImportsOnFileMove.enabled": "always"
}

参考原文:https://www.cnblogs.com/wenxiangxu/p/7760269.html

你可能感兴趣的:(tool)