1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
| // setting.json vscode配置文件 { "workbench.startupEditor": "newUntitledFile", "terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe", \\ 自行配置自己的环境地址 "javascript.updateImportsOnFileMove.enabled": "always", "editor.tabSize": 2, "search.exclude": { "**/node_modules": true, "**/bower_components": true }, "sync.gist": "748b4cae5eb6e56d6997978ead096e8f", "breadcrumbs.enabled": true, "todohighlight.isEnable": false, "liveServer.settings.donotShowInfoMsg": true, "search.location": "sidebar", "workbench.activityBar.visible": true, "window.menuBarVisibility": "default", "workbench.statusBar.visible": true, "editor.snippetSuggestions": "top", "editor.formatOnPaste": true, "workbench.colorTheme": "Tiny Light", "eslint.validate": [ "javascript", "javascriptreact", { "language": "html", "autoFix": true }, { "language": "vue", "autoFix": true } ], "prettier.eslintIntegration": true, "files.autoSave": "onWindowChange", "code-runner.saveAllFilesBeforeRun": true, "vetur.format.defaultFormatter.html": "js-beautify-html", "vetur.format.defaultFormatter.js": "vscode-typescript", "prettier.jsxSingleQuote": true, "prettier.requireConfig": false, "prettier.arrowParens": "always", "typescript.format.insertSpaceAfterSemicolonInForStatements": false, "prettier.stylelintIntegration": true, "prettier.singleQuote": true, "prettier.tslintIntegration": true, "eslint.provideLintTask": true, "eslint.autoFixOnSave": true, "editor.mouseWheelZoom": true, "editor.tabCompletion": "on", "editor.formatOnType": true, "eslint.alwaysShowStatus": true, "eslint.options": { "configFile": "E:/project/xxjs/fore-core/.eslintrc.js" // 自行配置自己的项目地址 }, "fileheader.Author": "Li.Xg", // 自行配置自己的名称 "fileheader.LastModifiedBy": "Li.Xg" // 自行配置自己的名称 }
|