当前位置:   article > 正文

vacode的prettier配置

insert space after function

前端 vue 项目根目录下添加 .prettierrc.json 文件, 配置如下就好了

  1. {
  2. "singleQuote": true,
  3. "semi": false
  4. }
  5. 表示
  6. singleQuote: true 使用单引号
  7. semi: false 在语句末尾不打印分号
  8. 复制代码
  1. {
  2. "workbench.iconTheme": "vscode-icons",
  3. "editor.fontFamily": "Menlo",
  4. "editor.fontSize": 16,
  5. "editor.formatOnSave": true,
  6. "workbench.colorTheme": "Dracula At Night",
  7. "[javascript]": {
  8. "editor.defaultFormatter": "esbenp.prettier-vscode"
  9. },
  10. "git.autofetch": true,
  11. "files.autoSave": "afterDelay",
  12. "prettier.tabWidth": 8,
  13. "prettier.stylelintIntegration": true,
  14. "vetur.format.options.tabSize": 4,
  15. "editor.detectIndentation": false,
  16. "prettier.semi": false,
  17. "prettier.singleQuote": true,
  18. "vetur.format.defaultFormatter.js": "vscode-typescript",
  19. "javascript.format.insertSpaceBeforeFunctionParenthesis": false, // 函数前配置
  20. // 匿名函数前括号的配置
  21. "javascript.format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": true
  22. }
  23. 复制代码

转载于:https://juejin.im/post/5cb938d8f265da036b4a5f78

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

闽ICP备14008679号