添加 VSCode 配置以支持 YAML 模式和文件关联
All checks were successful
/ job1 (push) Successful in 8s
/ job3 (push) Has been skipped
/ job2 (push) Successful in 6s
/ hashFiles (push) Successful in 6s
/ go-hashfiles (push) Successful in 21s

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"
}
}