Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mfussenegger/dapconfig-schema
JSON Schema for .vscode/launch.json debug configuration files
https://github.com/mfussenegger/dapconfig-schema
debug-adapter-protocol json-schema
Last synced: 24 days ago
JSON representation
JSON Schema for .vscode/launch.json debug configuration files
- Host: GitHub
- URL: https://github.com/mfussenegger/dapconfig-schema
- Owner: mfussenegger
- Created: 2024-06-01T15:39:50.000Z (7 months ago)
- Default Branch: master
- Last Pushed: 2024-10-03T09:51:15.000Z (3 months ago)
- Last Synced: 2024-11-25T13:44:10.740Z (about 1 month ago)
- Topics: debug-adapter-protocol, json-schema
- Homepage:
- Size: 4.88 KB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
JSON schema for `.vscode/launch.json` files.
The main motivation behind this is to get code completion and documentation
(`hover`) when using the `vscode-json-languageserver` while editing debug
configurations in an editor that is not `vscode` and doesn't have debug adapter
specific vscode-extensions installed.## Usage
Add a `$schema` line to your `.vscode/launch.json` file:
```json
{
"$schema": "https://raw.githubusercontent.com/mfussenegger/dapconfig-schema/master/dapconfig-schema.json",
"version": "0.2.0",
"configurations": [
]
}
```Ensure `vscode-json-language` is running and you should get property
completion, hover/documentation and validation.## Contributions
PRs that extend the schema with properties for more debug adapters are welcome