个人vscode 插件
微信小程序开发工具
小程序开发助手
Auto Close Tag
Auto Import
Auto Rename Tag
Babel JavaScript
Beautify
Beautify css/sass/scss/less
Better Align
Bracket Pair Colorizer
Chinese(Simplified) Language Pack for Visual Studio Code
Code Runner
color Highlight
Easy Sass
ESLint
File Peek
filesize
Find-Jump
Git History
GitHub
gitignore
HTML Snippets
JavaScript(ES6) code snippets
koroFileHeader
Live Server
Maintained Swift Development Environment
minapp
npm
npm Intellisense
open in browser
Prettier - Code formatter
Start git-bash
Vetur
view in Browser
wechat-snippet
wxml
settings.json
{
"editor.fontSize": 14,
"terminal.integrated.shell.windows": "C:\Program Files\Git\bin\bash.exe",
"editor.tabSize": 2,
"editor.formatOnType": true,
"easysass.formats": [
{
"format": "expanded",
"extension": ".wxss"
}
],
// "easysass.targetDir": "./css",
"open-in-browser.default": "chrome",
"emmet.includeLanguages": {
"javascript": "javascriptreact",
"wxml": "html"
},
"diffEditor.ignoreTrimWhitespace": false,
"window.zoomLevel": 0,
"workbench.colorTheme": "One Monokai",
"editor.wordWrap": "on",
"vetur.format.defaultFormatterOptions": {
"prettier": {
"semi": false,
"singleQuote": true,
}
},
"vetur.format.defaultFormatter.html": "js-beautify-html",
"[javascript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"javascript.format.insertSpaceBeforeFunctionParenthesis": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"files.associations": {
".cjson": "jsonc",
".wxss": "css",
"*.wxs": "javascript"
},
"minapp-vscode.disableAutoConfig": true,
"typescript.updateImportsOnFileMove.enabled": "always",
"fileheader.cursorMode": { // 函数注释
"description": "",
"param {type}": "",
"return {type}": ""
},
"fileheader.configObj": {
"autoAdd": false,
"createHeader": false,
"prohibitAutoAdd": [
"json",
"md"
] // 禁止.json .md文件,自动添加头部注释
},
"files.autoSave": "onFocusChange",
"git.confirmSync": false,
"editor.formatOnSave": true,
"git.enableSmartCommit": true,
"[css]": {
"editor.defaultFormatter": "HookyQR.beautify"
},
"[vue]": {
"editor.defaultFormatter": "octref.vetur"
}
}