Skip to content

Commit

Permalink
vscode: add wb format and schema
Browse files Browse the repository at this point in the history
add VSCode workspace settings file containing:
1. Association that .wb files are "JSON with comments"
2. Specify the link to the schema under /doc/
  • Loading branch information
tjhei committed Feb 14, 2024
1 parent 112b80e commit e1afd93
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"files.associations": {
"*.wb": "jsonc"
},
"json.validate.enable": true,
"json.schemas": [
{
"fileMatch": [
"*.wb"
],
"url": "./doc/world_builder_declarations.schema.json"
}
],
}

0 comments on commit e1afd93

Please sign in to comment.