Files
schoolNews/.vscode/settings.json

26 lines
699 B
JSON
Raw Normal View History

2025-09-28 14:20:09 +08:00
{
// 对所有文件生效
"editor.tabSize": 2,
// 仅对TS文件生效优先级更高
"[typescript]": {
"editor.tabSize": 2
},
"[java]":{
"editor.tabSize": 4
},
"maven.view": "hierarchical",
2025-10-07 11:02:35 +08:00
"java.compile.nullAnalysis.mode": "automatic",
// 终端编码设置
"terminal.integrated.encoding": "utf8",
2025-10-27 17:29:25 +08:00
"terminal.integrated.defaultProfile.windows": "Command Prompt",
2025-10-07 11:02:35 +08:00
"terminal.integrated.profiles.windows": {
"PowerShell": {
"source": "PowerShell",
"args": ["-NoExit", "-Command", "chcp 65001"]
},
"Command Prompt": {
"path": "cmd.exe",
"args": ["/k", "chcp 65001"]
}
}
2025-09-28 14:20:09 +08:00
}