vscode配置備份的操作代碼
更新時間:2021年04月23日 14:52:00 作者:嘻嘻哈哈biubiubiu
這篇文章主要介紹了vscode配置備份的相關(guān)知識,本文通過實(shí)例代碼相結(jié)合給大家介紹的非常詳細(xì),對大家的學(xué)習(xí)或工作具有一定的參考借鑒價值,需要的朋友可以參考下
備份vscode配置
{ "typescript.updateImportsOnFileMove.enabled": "always", "javascript.updateImportsOnFileMove.enabled": "always", "workbench.colorTheme": "Monokai", "workbench.editor.enablePreview": false, "editor.renderIndentGuides": false, "code-runner.runInTerminal": true, "editor.fontSize": 14, "editor.fontFamily": "Source Code Pro,Menlo, Monaco, 'Courier New', monospace", "editor.minimap.enabled": true, "editor.formatOnSave": true, "merge-conflict.autoNavigateNextConflict.enabled": true, "terminal.integrated.shell.osx": "/bin/zsh", "eslint.validate": [ "javascript", "javascriptreact", { "language": "typescript", "autoFix": true }, { "language": "typescriptreact", "autoFix": true }, { "language": "vue", "autoFix": true }, { "language": "html", "autoFix": true }, { "language": "vue", "autoFix": true } ], "eslint.options": { "extensions": [".js", ".vue", ".ts", ".tsx"] }, "eslint.enable": true, "editor.codeActionsOnSave": { "source.fixAll.eslint": false }, "[typescript]": { "editor.defaultFormatter": "vscode.typescript-language-features" }, "[typescriptreact]": { "editor.defaultFormatter": "esbenp.prettier-vscode" }, "[html]": { "editor.defaultFormatter": "esbenp.prettier-vscode" }, "[javascript]": { "editor.defaultFormatter": "esbenp.prettier-vscode" }, "[vue]": { "editor.defaultFormatter": "esbenp.prettier-vscode" }, "[less]": { "editor.defaultFormatter": "esbenp.prettier-vscode" }, "sync.gist": "7d9da7e86262c80dc44f9b0b48277aa3", "workbench.startupEditor": "welcomePage" }
到此這篇關(guān)于vscode配置備份的操作代碼的文章就介紹到這了,更多相關(guān)vscode配置備份內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
相關(guān)文章
詳解windows 環(huán)境下搭建electricSearch+kibana
這篇文章主要介紹了windows 環(huán)境下搭建electricSearch+kibana,本文給大家介紹的非常詳細(xì),對大家的學(xué)習(xí)或工作具有一定的參考借鑒價值,需要的朋友可以參考下2021-05-05electron桌面應(yīng)用程序搭建及簡單運(yùn)行
這篇文章主要介紹了electron桌面應(yīng)用程序搭建及運(yùn)行,需要的朋友可以參考下2022-12-12淺談服務(wù)發(fā)現(xiàn)和負(fù)載均衡的來龍去脈
單機(jī)時代,傳統(tǒng)軟件大多是單體/巨石架構(gòu)(Monolithic)。大家往一個代碼倉庫提交CODE,這會導(dǎo)致應(yīng)用膨脹,以及擴(kuò)展受限,無法按需伸縮等諸多問題。單體架構(gòu)怎么解決多人合作的問題?模塊化,按功能拆分,模塊之間定義編程接口(API)。本篇文章帶你詳細(xì)了解。2021-05-05