当前位置:   article > 正文

vscode settings.json 默认配置

vscode settings.json 默认配置
  1. {
  2. "vetur.format.defaultFormatterOptions": {
  3. "js-beautify-html": {
  4. // "wrap_attributes": "force-expand-multiline",
  5. "wrap_line_length": 150, // 换行字符串阈值
  6. "wrap_attributes": "auto",
  7. "end_with_newline": false // html 属性是否换行
  8. },
  9. "prettyhtml": {
  10. "printWidth": 100,
  11. "singleQuote": false, // //去掉末尾分号
  12. "wrapAttributes": false,
  13. "sortAttributes": false
  14. },
  15.         "prettier": {
  16.         "semi"false//去掉末尾分号
  17.         "singleQuote"true  //将所有双引号改为单引号
  18.     }
  19. },
  20. "editor.tabSize"2,  //缩进2个空格
  21. "javascript.format.insertSpaceBeforeFunctionParenthesis"true,  //在方括号之间插入空格
  22. "vetur.format.defaultFormatter.js""vscode-typescript",
  23.     //iview组件eslint报告Col闭合标签问题
  24.     "vetur.validation.template"false,
  25. "[vue]": {
  26. "editor.defaultFormatter": "octref.vetur"
  27. },
  28. "workbench.iconTheme": "vscode-icons",
  29. "extensions.ignoreRecommendations": true,
  30. "window.zoomLevel": -1,
  31. "editor.fontSize": 18,
  32. "explorer.confirmDelete": false,
  33. "vetur.format.defaultFormatter.html": "js-beautify-html"
  34. }

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/379056
推荐阅读
相关标签
  

闽ICP备14008679号