vscode 编写vue格式化配置及插件

365 阅读1分钟

插件推荐

  1. ESLint
  2. Prettier ESLint
  3. Tailwind CSS
  4. Vue Language Features
  5. TypeScript Vue Plugin

配置文件

在.vscode/setting.json 中添加

{

    "editor.detectIndentation": false,

    "editor.tabSize": 4,

    "editor.formatOnSave": true,

    "editor.codeActionsOnSave": {

        "source.fixAll.eslint": true

    },

    "css.validate": false,

    "less.validate": false,

    "scss.validate": false

}

博客地址