VS Code配置
0
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit"
},
"files.exclude": {
"**/.project": true,
"**/.settings": true,
"**/.classpath": true,
},
"search.exclude": {
"**/.git": true,
"**/dist": true,
"**/build": true,
"**/target": true,
"**/node_modules": true,
},
"files.watcherExclude": {
"**/.git/**": true,
"**/dist/**": true,
"**/build/**": true,
"**/target/**": true,
"**/node_modules/**": true,
},
"java.project.resourceFilters": [
"\\.git",
"dist",
"build",
"node_modules",
],
"java.debug.settings.vmArgs": "-Dfile.encoding=UTF-8",
"java.jdt.ls.vmargs": "-Xmx4G -Xms2G -XX:+UseG1GC",
"terminal.integrated.profiles.windows": {
"PowerShell": {
"source": "PowerShell",
"icon": "terminal-powershell",
"args": [
"-NoLogo",
"-NoExit",
"-Command",
"chcp.com 65001"
]
},
"Command Prompt": {
"path": [
"${env:windir}\\Sysnative\\cmd.exe",
"${env:windir}\\System32\\cmd.exe"
],
"args": [
"/K",
"chcp 65001"
],
"icon": "terminal-cmd"
},
"Git Bash": {
"source": "Git Bash"
}
},
"java.configuration.runtimes": [
{
"name": "JavaSE-17",
"path": "C:\\develop\\java\\jdk-17.0.1"
},
{
"name": "JavaSE-11",
"path": "C:\\develop\\java\\jdk-11.0.2",
"default": true
},
{
"name": "JavaSE-1.8",
"path": "C:\\develop\\java\\java-se-8u41-ri"
}
],
"cmake.outputLogEncoding": "utf-8",