RUOYI-geek/.vscode/settings.json

44 lines
1.4 KiB
JSON
Raw Normal View History

{
2023-12-13 06:09:08 +00:00
"java.configuration.updateBuildConfiguration": "interactive",
"files.associations": {
"*.yml": "yaml"
},
"java.compile.nullAnalysis.mode": "disabled",
"maven.view": "hierarchical",
2024-03-23 10:56:38 +00:00
"maven.executable.options": "-T 4",
"maven.pomfile.autoUpdateEffectivePOM": true,
"java.debug.settings.hotCodeReplace": "auto",
"spring-boot.ls.java.home": "",
2024-04-15 12:48:12 +00:00
"java.jdt.ls.vmargs": "-XX:+UseParallelGC -XX:GCTimeRatio=9 -XX:AdaptiveSizePolicyWeight=90 -Dsun.zip.disableMemoryMapping=true -Xmx4G -Xms4G -Xlog:disable",
2023-12-13 06:09:08 +00:00
// "java.compile.nullAnalysis.mode": "automatic"
2024-04-15 12:48:12 +00:00
"maven.excludedFolders": [
"**/.vscode",
"**/.idea",
"**/target",
"**/.*",
"**/node_modules",
"**/target",
"**/bin",
"**/archetype-resources"
],
"boot-java.rewrite.refactorings.on": true,
"maven.executable.preferMavenWrapper": true,
"java.import.maven.enabled": true,
"java.dependency.packagePresentation": "hierarchical",
"sqltools.connections": [
{
"mysqlOptions": {
"authProtocol": "default",
"enableSsl": "Disabled"
},
"previewLimit": 50,
"server": "localhost",
"port": 3306,
"driver": "MySQL",
"name": "localhost",
"database": "ry",
"username": "root",
"password": "123456"
}
],
}