-
Notifications
You must be signed in to change notification settings - Fork 3
Develop with VS Code
Yusuke Yamada edited this page May 28, 2024
·
1 revision
Recommended workspace
{
"folders": [
{
"path": "."
}
],
"settings": {
"rust-analyzer.linkedProjects": [
"./binding/Cargo.toml",
"./binding/voicevox_core/Cargo.toml"
],
"json.schemas": [
{
"fileMatch": [
// for running test locally by act
"*/event.json",
".github/fixtures/*.json"
],
// see: https://github.com/octokit/webhooks
"url": "https://unpkg.com/@octokit/webhooks-schemas/schema.json"
}
]
},
"extensions": {
"recommendations": ["remcohaszing.schemastore"]
}
}