2021.6.25 vscode配置

{
  // 換行
  "editor.wordWrap": "off",

  // 代碼縮進修改成2個空格
  "editor.tabSize": 2,

  // 控制編輯器是否啟用了代碼折疊胞得。
  "editor.folding": true,

  // 不檢查縮進,保存后統(tǒng)一按設(shè)置項來設(shè)置
  "editor.detectIndentation": false,
  
  // html格式化
  "vetur.format.defaultFormatter.html": "js-beautify-html",

  // vue組件中html代碼格式化樣式
  "vetur.format.defaultFormatterOptions": {
    "js-beautify-html": {
        "wrap_attributes": "force-aligned"
    }
  },

  // 文件保存時是否根據(jù)eslint進行格式化
  "editor.codeActionsOnSave": {
    "source.fixAll.eslint": true
  },

  "eslint.format.enable": true,

  "javascript.validate.enable": false,

  //autoFix默認開啟自動修復功能,只需輸入字符串數(shù)組即可【用eslint的規(guī)則檢測js文件、檢測vue文件】
  "eslint.validate": [
    "javascript",
    "javascriptreact" ,
    "vue",
    "html",
    "jsx",
    ],

  "eslint.alwaysShowStatus": true,

  // eslint配置文件
  "eslint.options": {
    "extensions": [
      ".js",
      ".vue"
    ]
  },

  // 設(shè)置行高
  "editor.lineHeight": 20,

  // 讓prettier使用eslint的代碼格式進行校驗
  "prettier.eslintIntegration": true,

  // 去掉代碼結(jié)尾的分號
  "prettier.semi": true,

  // 使用帶引號替代雙引號
  "prettier.singleQuote": true,

  // js設(shè)置單引號
  "javascript.preferences.quoteStyle": "single",

  "vetur.format.defaultFormatter.js": "vscode-typescript",

  "vetur.format.defaultFormatter.css": "prettier",
 
  "vetur.format.defaultFormatter.less": "prettier",

  // 配置文件關(guān)聯(lián),以便啟用對應的提示
  "files.associations": {
    "*.vue": "vue",
    "*.cjson": "jsonc",
    "*.wxss": "css",
    "*.wxs": "javascript",
    "*.art": "html"
  },
  "less.compile": {
    // "compress":  true,  // 是否刪除多余空白字符
    // "sourceMap": true,  // 是否創(chuàng)建文件目錄樹,true的話會自動生成一個 .css.map 文件
    "outExt": ".wxss" // 輸出文件的后綴,默認為.css
  },
  "search.exclude": {
    "**/node_modules": true,
    "**/bower_components": true,
    "**/dist": true
  },
  "emmet.syntaxProfiles": {
    "javascript": "jsx",
    "vue": "html",
    "vue-html": "html"
  },
  "git.confirmSync": false,
  "editor.renderWhitespace": "boundary",
  "editor.cursorBlinking": "smooth",
  "editor.minimap.enabled": true,
  "editor.minimap.renderCharacters": false,
  "window.title": "${dirty}${activeEditorMedium}${separator}${rootName}",
  "editor.codeLens": true,
  "editor.snippetSuggestions": "top",
  "emmet.includeLanguages": {
    "wxml": "html"
  },
  "minapp-vscode.disableAutoConfig": true,
  "files.autoSave": "off",
  "[javascript]": {
    "editor.defaultFormatter": "vscode.typescript-language-features"
  },
  "[json]": {
    "editor.defaultFormatter": "vscode.json-language-features"
  },
  "[html]": {
    "editor.defaultFormatter": "vscode.html-language-features"
  },
  "explorer.confirmDragAndDrop": false,
  "diffEditor.ignoreTrimWhitespace": true,
  "[css]": {
    "editor.defaultFormatter": "aeschli.vscode-css-formatter"
  },
  "emmet.triggerExpansionOnTab": true,
  "emmet.showSuggestionsAsSnippets": true,
  "vsicons.dontShowNewVersionMessage": true,
  "emmet.extensionsPath": [
    ""
  ],
  "workbench.iconTheme": "vscode-icons",
  
  "auto-close-tag.activationOnLanguage": [
  "*.art",
    "xml",
    "php",
    "blade",
    "ejs",
    "jinja",
    "javascript",
    "javascriptreact",
    "typescript",
    "typescriptreact",
    "plaintext",
    "markdown",
    "vue",
    "liquid",
    "erb",
    "lang-cfml",
    "cfml",
    "HTML (EEx)",
    "HTML (Eex)",
    "plist"
  ],
  // 高亮的顏色,emm暫時只支持這樣寫
  "wxmlConfig.activeColor": {
    "color": "#e5c07b"
  },
  // 是否禁用高亮組件
  "wxmlConfig.activeDisable": false,
  // 是否開啟保存自動格式化
  "wxmlConfig.onSaveFormat": false,
  "wxmlConfig.format": {
    "brace_style": "collapse",
    "end_with_newline": false,
    "indent_char": "",
    "indent_handlebars": false,
    "indent_inner_html": false,
    "indent_scripts": "keep",
    "indent_size": 2,
    "indent_with_tabs": true,
    "max_preserve_newlines": 1,
    "preserve_newlines": true,
    "wrap_attributes": "force-expand-multiline"
  },
  // 高亮所忽略的組件數(shù)組
  "wxmlConfig.tagNoActiveArr": [
    "view",
    "button",
    "text",
    "icon",
    "image",
    "navigator",
    "block",
    "input",
    "template",
    "form",
    "camera",
    "textarea"
  ],
  // 設(shè)置終端為cmder
  "terminal.integrated.shell.windows": "cmd.exe",
  "terminal.integrated.env.windows": {
      //設(shè)置cmder的根目錄
      "CMDER_ROOT": "D:\\Users\\cmder"
  },
  "terminal.integrated.shellArgs.windows": [
      "/k",
      //設(shè)置啟動初始化目錄
      "cmder的根目錄\\vendor\\init.bat"
  ],
  "turboConsoleLog.quote": "'",
  "editor.formatOnSave": true,
  "editor.renderIndentGuides": false
}
image.png

image.png

image.png

微信小程序自定義組件代碼片段提示
Auto Close Tag
Auto Rename Tag
AutoFileName
Beautify
Beautify css/sass/scss/less
Bracket Pair Colorizer
Browser Preview
Chinese (Simplified) Language Pack for Visual Studio Code
Cobalt2 Theme Official
Colonize
CSS Formatter
CSS Peek
CSS Tree
Debugger for Chrome
DotENV
Easy LESS
Element UI Snippets
ES7 React/Redux/GraphQL/React-Native snippets
ESLint
Guides
Highlight Matching Tag
HTML Snippets
i18n Ally
Iconify IntelliSense
JetJet-theme
Material Icon Theme
minapp
Path Autocomplete
Picture Element
Prettier - Code formatter
stylelint
Turbo Console Log
Vetur
VS Code Counter
VSCode Great Icons
vscode wxml
vscode-icons
vue
Vue 3 Snippets
Vue VSCode Snippets
WakaTime
WindiCSS IntelliSense
wxml
wechat-snippet

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末画舌,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子已慢,更是在濱河造成了極大的恐慌曲聂,老刑警劉巖,帶你破解...
    沈念sama閱讀 210,978評論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件佑惠,死亡現(xiàn)場離奇詭異朋腋,居然都是意外死亡齐疙,警方通過查閱死者的電腦和手機,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 89,954評論 2 384
  • 文/潘曉璐 我一進店門旭咽,熙熙樓的掌柜王于貴愁眉苦臉地迎上來贞奋,“玉大人,你說我怎么就攤上這事穷绵〗嗡” “怎么了?”我有些...
    開封第一講書人閱讀 156,623評論 0 345
  • 文/不壞的土叔 我叫張陵仲墨,是天一觀的道長勾缭。 經(jīng)常有香客問我,道長目养,這世上最難降的妖魔是什么俩由? 我笑而不...
    開封第一講書人閱讀 56,324評論 1 282
  • 正文 為了忘掉前任,我火速辦了婚禮癌蚁,結(jié)果婚禮上幻梯,老公的妹妹穿的比我還像新娘。我一直安慰自己努释,他們只是感情好礼旅,可當我...
    茶點故事閱讀 65,390評論 5 384
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著洽洁,像睡著了一般。 火紅的嫁衣襯著肌膚如雪菲嘴。 梳的紋絲不亂的頭發(fā)上饿自,一...
    開封第一講書人閱讀 49,741評論 1 289
  • 那天,我揣著相機與錄音龄坪,去河邊找鬼昭雌。 笑死,一個胖子當著我的面吹牛健田,可吹牛的內(nèi)容都是我干的烛卧。 我是一名探鬼主播,決...
    沈念sama閱讀 38,892評論 3 405
  • 文/蒼蘭香墨 我猛地睜開眼妓局,長吁一口氣:“原來是場噩夢啊……” “哼总放!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起好爬,我...
    開封第一講書人閱讀 37,655評論 0 266
  • 序言:老撾萬榮一對情侶失蹤局雄,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后存炮,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體炬搭,經(jīng)...
    沈念sama閱讀 44,104評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡蜈漓,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,451評論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了宫盔。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片融虽。...
    茶點故事閱讀 38,569評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖灼芭,靈堂內(nèi)的尸體忽然破棺而出有额,到底是詐尸還是另有隱情,我是刑警寧澤姿鸿,帶...
    沈念sama閱讀 34,254評論 4 328
  • 正文 年R本政府宣布谆吴,位于F島的核電站,受9級特大地震影響苛预,放射性物質(zhì)發(fā)生泄漏句狼。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 39,834評論 3 312
  • 文/蒙蒙 一热某、第九天 我趴在偏房一處隱蔽的房頂上張望腻菇。 院中可真熱鬧,春花似錦昔馋、人聲如沸筹吐。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,725評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽丘薛。三九已至,卻和暖如春邦危,著一層夾襖步出監(jiān)牢的瞬間洋侨,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,950評論 1 264
  • 我被黑心中介騙來泰國打工倦蚪, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留希坚,地道東北人。 一個月前我還...
    沈念sama閱讀 46,260評論 2 360
  • 正文 我出身青樓陵且,卻偏偏與公主長得像裁僧,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子慕购,可洞房花燭夜當晚...
    茶點故事閱讀 43,446評論 2 348

推薦閱讀更多精彩內(nèi)容

  • 本文目錄: 1.漢化 2.常用插件 3.設(shè)置默認瀏覽器 4.用戶代碼片段 5.調(diào)節(jié)左側(cè)導航欄字體大小 6.修改格式...
    前端輝羽閱讀 913評論 0 8
  • 插件列表: Color Info 這個便捷的插件聊疲,將為你提供你在CSS 中使用顏色的相關(guān)信息。你只需在顏色上懸...
    騎著蝸牛攆大象閱讀 12,846評論 0 2
  • 一沪悲、HTML中的標簽售睹、屬性、和取值 1.基礎(chǔ)類標簽: :雙標簽可训,是header的簡寫昌妹,此html文件內(nèi)的標題(bl...
    劉遠舟閱讀 556評論 0 0
  • 基礎(chǔ)必備插件 Chinese (Simplified) Language Pack for Visual Stud...
    正在學前端的流螢閱讀 226評論 0 0
  • vscode 前端擴展建議 開源捶枢,幫助方便,使用簡單飞崖,占系統(tǒng)資源少烂叔,提供豐富的插件,界面很贊 vs code 漢化...
    鏡軒夕照閱讀 1,443評論 0 2