美文网首页
vscode 格式化代码,点击保存即格式化

vscode 格式化代码,点击保存即格式化

作者: 小虾57 | 来源:发表于2021-09-06 14:23 被阅读0次

    {
    "vetur.format.defaultFormatter.html": "js-beautify-html",
    // #每次保存的时候将代码按eslint格式进行修复
    "eslint.autoFixOnSave": true,
    // vscode默认启用了根据文件类型自动设置tabsize的选项
    "editor.detectIndentation": false,
    // 重新设定tabsize
    "editor.tabSize": 2,
    // #每次保存的时候自动格式化
    "editor.formatOnSave": true,
    "explorer.confirmDelete": false,
    "vetur.format.defaultFormatterOptions": {
    "js-beautify-html": {
    "wrap_attributes": "auto",
    "no-console": "off"
    },
    "prettyhtml": {
    "printWidth": 100,
    "singleQuote": false,
    "wrapAttributes": false,
    "sortAttributes": false
    }
    },
    "window.zoomLevel": 0,
    "workbench.startupEditor": "newUntitledFile"
    }

    相关文章

      网友评论

          本文标题:vscode 格式化代码,点击保存即格式化

          本文链接:https://www.haomeiwen.com/subject/pxwewltx.html