VUE在VSCode中的代码格式化设置

VUE在VSCode中的代码格式化设置

{
    "terminal.integrated.shell.windows": "C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe",
    "gitlens.advanced.messages": {
        "suppressShowKeyBindingsNotice": true
    },
    // 开启代码缩略图
    "editor.minimap.enabled": true,
    // JavaScript环境配置
    "vetur.format.defaultFormatter.html": "js-beautify-html",
    "vetur.format.defaultFormatter.js": "vscode-typescript",
    "vetur.format.defaultFormatter.ts": "vscode-typescript",
    "vetur.format.defaultFormatter.css": "prettier",
    // 一个tab等于两个字符
    "prettier.tabWidth": 2,
    // 函数括号前是否加空格
    "javascript.format.insertSpaceBeforeFunctionParenthesis": true,
    "typescript.format.insertSpaceBeforeFunctionParenthesis": true,
    // 函数括号后是否加空格
    "javascript.format.insertSpaceAfterConstructor": true,
    "typescript.format.insertSpaceAfterConstructor": true,
    // 搜索时排除以下文件夹
    "search.exclude": {
        "**/node_modules": true,
        "**/bower_components": true,
        "**/target": true,
        "**/logs": true
    },
    // 一个tab等于两个字符
    "editor.tabSize": 2,
    // 文件移动时更新import引入路径
    "javascript.updateImportsOnFileMove.enabled": "always",
    "terminal.integrated.rendererType": "dom",
	// 保存时按照配置自动格式化代码
    "eslint.autoFixOnSave": true,
    // eslint适用的语言配置
    "eslint.validate": [
        "javascript",
        "javascriptreact",
        {
            "language": "vue",
            "autoFix": true
        }
    ],
    // eslint适用的文件配置
    "eslint.options": {
        "extensions": [".js", ".vue"]
    },
    // 代码快速提示
    "editor.quickSuggestions": {
        "other": true,
        "comments": true,
        "strings": true
    },
    // 自动猜测文件编码
    "files.autoGuessEncoding": true,
    // 打开编辑器时默认打开一个空文件
    "workbench.startupEditor": "newUntitledFile",
    // elementUI代码提示版本
    "element-helper.version": "2.4"
}

你可能感兴趣的:(VUE,web前端,格式化,javascript,前端工程化,HTML)