添加 VSCode 配置以支持 YAML 模式和文件关联

This commit is contained in:
严浩
2024-10-14 12:06:05 +08:00
parent 0a6aed2a9b
commit fa934c7513

14
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,14 @@
{
"yaml.schemas": {
"https://json.schemastore.org/drone.json": [
".drone*"
],
"https://json.schemastore.org/github-workflow.json": [
".gitea/workflows/*.yml",
".gitea/workflows/*.yaml",
]
},
"files.associations": {
".drone.yml.off": "yaml"
}
}