vscode配置文件

vscode安裝eslint插件javascript

{
    // git安裝路徑
    "git.path": "D:/Git/cmd/git.exe",
    // 設置本地服務的端口號
    "liveServer.settings.port": 8088,
    // 設置根目錄,也就是打開的文件會在該目錄下找
    "liveServer.settings.root": "/",
    // 設置默認打開的瀏覽器
    "liveServer.settings.CustomBrowser": "chrome",
    "liveServer.settings.AdvanceCustomBrowserCmdLine": "chrome --incognito --remote-debugging-port=9222",
    "liveServer.settings.NoBrowser": false,
    "liveServer.settings.ignoreFiles": [
        // 設置忽略的文件
        "/aaaaaaaa.js"
        // "/b.js"
    ],
    "workbench.colorTheme": "Dracula",
    "editor.detectIndentation": false,
    "files.autoSave": "off",
    "files.eol": "\r\n",
    "editor.fontSize": 16,
    "window.zoomLevel": 0,
    "workbench.sideBar.location": "left",
    "workbench.startupEditor": "newUntitledFile",
    // vue文件格式化
    "vetur.format.options.tabSize": 4,
    "vetur.format.options.useTabs": false, // 不使用tab
    "vetur.format.defaultFormatterOptions": {
        // "js-beautify-html": {
        //     "wrap_attributes": "force-expand-multiline"
        // },
        // "prettyhtml": {
        //     "printWidth": 100,
        //     "singleQuote": false,
        //     "wrapAttributes": false,
        //     "sortAttributes": false
        // }
        "prettier": {
            "semi": true, // 加分號
            "singleQuote": true // 使用單引號
        }
    },
    // eslint相關
    "eslint.nodePath": "D:/node-v11.0.0-win-x64",
    
    // 工做區單獨配置 若是項目是html格式,並且沒有.eslintrc.js文件 則在工做區配置中配置此項
    // "eslint.options": {
    //     "configFile": "D:/eslintconfig/.eslintrc.js",
    //     "plugins": [
    //         "html"
    //     ]
    // },
    // 工做區單獨配置 若是項目是html格式,並且沒有.eslintrc.js文件 則在工做區配置中配置此項

    "eslint.validate": [
        "javascript",
        "javascriptreact",
        "html",
        "vue"
    ],
    "files.associations": {
        "*.cjson": "jsonc",
        "*.wxss": "css",
        "*.wxs": "javascript"
    },
    "emmet.includeLanguages": {
        "wxml": "html"
    },
    "minapp-vscode.disableAutoConfig": true,
    "emmet.triggerExpansionOnTab": true,
    "liveServer.settings.donotShowInfoMsg": true
}
相關文章
相關標籤/搜索