vscode settings

{
"gitlens.advanced.messages": {
"suppressShowKeyBindingsNotice": true
},
"files.exclude": {
"/.git": true,
"
/.svn": true,
"/.hg": true,
"
/CVS": true,
"/.DS_Store": true,
"
/tmp": true,
"/node_modules": true,
"
/bower_components": true,
"/dist": true,
"
/.classpath": true,
"/.project": true,
"
/.settings": true,
"/.factorypath": true
},
"files.watcherExclude": {
"
/.git/objects/": true,
"
/.git/subtree-cache/": true,
"
/node_modules/": true,
"
/tmp/": true,
"
/bower_components/": true,
"
/dist/": true
},
// "vetur.format.defaultFormatter.html": "js-beautify-html",
"vetur.validation.template": false,
"fileheader.Author": "zhanchao.wu",
"fileheader.LastModifiedBy": "zhanchao.wu",
// "types" 只能在 .ts 文件中使用。关闭
"javascript.validate.enable": false,
"window.zoomLevel": 0,
"editor.tabSize": 2,
"javascript.updateImportsOnFileMove.enabled": "always",
"git.autofetch": true,
"editor.multiCursorModifier": "alt",
"terminal.integrated.fontSize": 12,
// "editor.formatOnPaste": true,
"git.enableSmartCommit": true,
// "editor.formatOnType": true,
// vscode默认启用了根据文件类型自动设置tabsize的选项
"editor.detectIndentation": false,
"debug.inlineValues": true,
// es7 装饰器(Decorator)在javascript种的使用
// "compilerOptions.experimentalDecorators": true
"markdownlint.config": {
"MD029": {
"style": "ordered"
},
"MD031": false
},
"files.associations": {
"
.cjson": "jsonc",
"
.wxss": "css",
".wxs": "javascript",
"
.html": "html",
"*.java": "java"
},
"emmet.includeLanguages": {
"wxml": "html"
},
"telemetry.enableCrashReporter": false,
"editor.quickSuggestions": {
"strings": true
},
"editor.formatOnPaste": true,
"editor.formatOnType": false,
"[javascript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"[jsonc]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"editor.suggestSelection": "first",
"workbench.iconTheme": "vscode-icons",
"typescript.updateImportsOnFileMove.enabled": "always",
"vsicons.dontShowNewVersionMessage": true,
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.minimap.enabled": false,
"editor.formatOnSave": true,
"terminal.integrated.rendererType": "dom",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"java.jdt.ls.vmargs": "-noverify -Xmx1G -XX:+UseG1GC -XX:+UseStringDeduplication -javaagent:"/Users/wangzhaofeng/.vscode/extensions/gabrielbb.vscode-lombok-1.0.0/server/lombok.jar"",
// Specifies the folder path to the JDK (8 or more recent) used to launch the Java Language Server.
// On Windows, backslashes must be escaped, i.e.
// "java.home":"C:\Program Files\Java\jdk1.8.0_161"
"java.home": "/Library/Java/JavaVirtualMachines/jdk1.8.0_191.jdk/Contents/Home",
// Path to Maven's settings.xml
"java.configuration.maven.userSettings": "/Users/wangzhaofeng/Documents/maven/conf/settings.xml",
"maven.executable.path": "/Users/wangzhaofeng/Documents/maven/bin/mvn",
"maven.terminal.useJavaHome": true,
"maven.terminal.customEnv": [
{
"environmentVariable": "JAVA_HOME",
"value": "/Library/Java/JavaVirtualMachines/jdk1.8.0_191.jdk/Contents/Home"
}
],
"maven.pomfile.autoUpdateEffectivePOM": true,
// 如果为 true,将使用单引号而不是双引号
"prettier.singleQuote": true,
// "javascript.format.insertSpaceBeforeFunctionParenthesis": true,
}

你可能感兴趣的:(vscode settings)