前端开发工具vscode插件推荐及配置

笑着哭i 提交于 2020-08-15 01:46:43

vscode插件推荐

vscode 配置 ESLint

  "files.autoSave": "off",
    "eslint.validate": [
        "javascript",
        "javascriptreact",
        "html",
        {
            "language": "vue",
            "autoFix": true
        }
    ],
    "eslint.options": {
        "plugins": [
            "html"
        ]
    },
    "eslint.autoFixOnSave": true,

Vscode + Prettier

    "prettier.singleQuote": true,
    "prettier.semi": false,
    "prettier.eslintIntegration": true,
    "prettier.printWidth": 120,
    "editor.formatOnSave": true,

Vscode + Vetur

 "vetur.format.defaultFormatter.js": "vscode-typescript",
  "vetur.format.defaultFormatter.html": "js-beautify-html",
  "vetur.format.defaultFormatterOptions": {
    "js-beautify-html": {
      "wrap_attributes": "auto"
    }
  },

 

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!