Files
schoolNews/.vscode/settings.json

34 lines
946 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-11-14 18:31:39 +08:00
},
2025-11-19 16:04:50 +08:00
"java.debug.settings.onBuildFailureProceed": true,
"python-envs.pythonProjects": [
{
"path": "schoolNewsCrawler",
"envManager": "ms-python.python:venv",
"packageManager": "ms-python.python:pip"
}
]
2025-09-28 14:20:09 +08:00
}