Skip to content

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"]
  }
}
Clone this wiki locally