vscode格式化设置

851 阅读1分钟

工作区设置

{
    "workbench.colorTheme": "One Dark Pro",
    "editor.fontSize": 13,
    "workbench.editor.enablePreview": true, //预览模式关闭
    "editor.formatOnSave": true, // #每次保存的时候自动格式化
    // 自动修复
    "editor.codeActionsOnSave": {
        "source.fixAll.eslint": true,
    },
    "eslint.enable": true, //是否开启vscode的eslint
    // 配置 ESLint 检查的文件类型
    "eslint.validate": [
        "javascript",
        "vue",
        "html"
    ],
    "eslint.options": { //指定vscode的eslint所处理的文件的后缀
        "extensions": [
            ".js",
            ".vue",
            ".ts",
            ".tsx"
        ]
    },
    "files.associations": {
        "*.wpy": "vue",
        "*.wxml": "wxml",
        "*.cjson": "jsonc",
        "*.wxss": "css",
        "*.wxs": "javascript",
        "*.html": "html"
    },
    "emmet.includeLanguages": {
        "wxml": "html"
    },
    "minapp-vscode.disableAutoConfig": true,
    // vscode默认启用了根据文件类型自动设置tabsize的选项
    "editor.detectIndentation": false,
    // 重新设定tabsize
    "editor.tabSize": 4,
    "editor.renderWhitespace": "boundary",
    //  #去掉代码结尾的分号 
    "prettier.semi": false,
    //  #使用单引号替代双引号 
    "prettier.singleQuote": true,
    //  #让函数(名)和后面的括号之间加个空格
    "javascript.format.insertSpaceBeforeFunctionParenthesis": true,
    // #让vue中的js按编辑器自带的ts格式进行格式化 
    "vetur.format.defaultFormatter.js": "vscode-typescript",
    "git.enableSmartCommit": true,
    "editor.quickSuggestions": {
        "strings": true
    },
    // 插件KoroFileHeader
    // 文件头部注释-快捷键crtl+alt+i(window),ctrl+cmd+t (mac)
    "fileheader.customMade": {
        "Descripttion": "",
        //"version": "",
        "Author": "voanit",
        "Date": "Do not edit",
        "LastEditors": "voanit",
        "LastEditTime": "Do not Edit"
    },
    //函数注释-快捷键ctrl+alt+t (window), ctrl+alt+t(mac)
    "fileheader.cursorMode": {
        "name": "",
        // "test": "test font",
        // "msg": "",
        "param": "",
        "return": ""
    },
    //安装live Server插件
    "liveServer.settings.donotVerifyTags": true,
    "liveServer.settings.donotShowInfoMsg": true,
    "liveServer.settings.NoBrowser": true,
    "liveServer.settings.CustomBrowser": "chrome", //设置默认打开的浏览器
    "liveServer.settings.host": "127.0.0.1",
    "liveServer.settings.port": 5000, //设置本地服务的端口号
    "liveServer.settings.root": "/distserver",
    "[vue]": {
        "editor.defaultFormatter": "octref.vetur"
    },
    "javascript.updateImportsOnFileMove.enabled": "never",
    "javascript.implicitProjectConfig.experimentalDecorators": true,
    "workbench.editor.showTabs": true,
    "terminal.integrated.rendererType": "dom",
    "sync.gist": "396472a5bb443e3680d5a0e2ffccefe8",
    "window.zoomLevel": 0,
    "diffEditor.ignoreTrimWhitespace": false,
    "launch": {},
    "[jsonc]": {
        "editor.defaultFormatter": "remimarsal.prettier-now"
    },
    "[typescript]": {
        "editor.defaultFormatter": "vscode.typescript-language-features"
    },
    "json.schemas": [
        {
            "fileMatch": [
                "/myfile"
            ],
            "url": "schemaURL"
        }
    ],
    "git.ignoreLimitWarning": true
}

vetur设置

{
    "vetur.format.defaultFormatter.html": "js-beautify-html",
    "emmet.includeLanguages": {
        "wxml": "html"
    },
    "minapp-vscode.disableAutoConfig": true,
    "explorer.confirmDelete": false,
    "vetur.format.options.tabSize": 4,
    "vetur.format.defaultFormatterOptions":{
    
        "js-beautify-html": {
            "wrap_attributes": "auto",
            "wrap_attributes_mode": "auto",
            "wrap-line-length": 200,
            "wrapped_attributes_per_line": "multiple",
            "wrapped_attributes_indent": "auto",
            "wrapped_attributes_end": "auto"
          }
    },
    "leek-fund.funds": [
        "320007",
        "003095",
        "161725",
        "110022",
        "005827",
        "519674"
    ],
    "editor.suggestSelection": "first",
    "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
    "[javascript]": {
        "editor.defaultFormatter": "vscode.typescript-language-features"
    },
    "[html]": {
        "editor.defaultFormatter": "vscode.html-language-features"
    },
    "workbench.colorTheme": "One Dark Pro",
    "diffEditor.ignoreTrimWhitespace": false,
    "vsintellicode.modelDownloadPath": ""
}

Eslint+vetur+prettie