Files
schoolNews/.vscode/settings.json
2025-11-14 18:31:39 +08:00

27 lines
754 B
JSON
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
// 对所有文件生效
"editor.tabSize": 2,
// 仅对TS文件生效优先级更高
"[typescript]": {
"editor.tabSize": 2
},
"[java]":{
"editor.tabSize": 4
},
"maven.view": "hierarchical",
"java.compile.nullAnalysis.mode": "automatic",
// 终端编码设置
"terminal.integrated.encoding": "utf8",
"terminal.integrated.defaultProfile.windows": "Command Prompt",
"terminal.integrated.profiles.windows": {
"PowerShell": {
"source": "PowerShell",
"args": ["-NoExit", "-Command", "chcp 65001"]
},
"Command Prompt": {
"path": "cmd.exe",
"args": ["/k", "chcp 65001"]
}
},
"java.debug.settings.onBuildFailureProceed": true
}