fdedcf53bb
Basic checks / Compilation, Unit and Integration Tests (push) Has been cancelled
Basic checks / Hygiene and Layering (push) Has been cancelled
Basic checks / Warm up node modules cache (push) Has been cancelled
Check Format and Lint / lint-and-format (push) Has been cancelled
57 lines
1.2 KiB
JSON
57 lines
1.2 KiB
JSON
{
|
|
"name": "handlebars",
|
|
"displayName": "%displayName%",
|
|
"description": "%description%",
|
|
"version": "1.0.0",
|
|
"publisher": "vscode",
|
|
"license": "MIT",
|
|
"engines": {
|
|
"vscode": "0.10.x"
|
|
},
|
|
"scripts": {
|
|
"update-grammar": "node ../node_modules/vscode-grammar-updater/bin daaain/Handlebars grammars/Handlebars.json ./syntaxes/Handlebars.tmLanguage.json"
|
|
},
|
|
"categories": ["Programming Languages"],
|
|
"extensionKind": [
|
|
"ui",
|
|
"workspace"
|
|
],
|
|
"contributes": {
|
|
"languages": [
|
|
{
|
|
"id": "handlebars",
|
|
"extensions": [
|
|
".handlebars",
|
|
".hbs",
|
|
".hjs"
|
|
],
|
|
"aliases": [
|
|
"Handlebars",
|
|
"handlebars"
|
|
],
|
|
"mimetypes": [
|
|
"text/x-handlebars-template"
|
|
],
|
|
"configuration": "./language-configuration.json"
|
|
}
|
|
],
|
|
"grammars": [
|
|
{
|
|
"language": "handlebars",
|
|
"scopeName": "text.html.handlebars",
|
|
"path": "./syntaxes/Handlebars.tmLanguage.json"
|
|
}
|
|
],
|
|
"htmlLanguageParticipants": [
|
|
{
|
|
"languageId": "handlebars",
|
|
"autoInsert": true
|
|
}
|
|
]
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/microsoft/vscode.git"
|
|
}
|
|
}
|