关于vscode插件:vscode-配置eslint-自动格式化文件

38次阅读

共计 611 个字符,预计需要花费 2 分钟才能阅读完成。

{
    "workbench.iconTheme": "material-icon-theme",
    "editor.fontSize": 18,
    "workbench.startupEditor": "none",
    "vetur.validation.template": true,
    "editor.tabSize": 2,
    "eslint.validate": [
        "javascript",
        "javascriptreact",
        "html",
        "vue",
    ],
    "eslint.alwaysShowStatus": true,
    "editor.formatOnSave": true,
    "files.autoSave": "onFocusChange",
    "eslint.format.enable": true,
    "[vue]": {"editor.defaultFormatter": "dbaeumer.vscode-eslint"},
    "": {"editor.defaultFormatter":"dbaeumer.vscode-eslint"},
    // "files.eol": "\n"
}

正文完
 0