mirror of
https://github.com/Microsoft/vscode
synced 2024-11-05 18:29:38 +00:00
1e0580ec23
* support grouping of extensions * remove grouping * reuse categories parsing * cleanup * fix tests
48 lines
1 KiB
JSON
48 lines
1 KiB
JSON
{
|
|
"name": "pug",
|
|
"displayName": "%displayName%",
|
|
"description": "%description%",
|
|
"version": "1.0.0",
|
|
"publisher": "vscode",
|
|
"license": "MIT",
|
|
"engines": {
|
|
"vscode": "*"
|
|
},
|
|
"scripts": {
|
|
"update-grammar": "node ../node_modules/vscode-grammar-updater/bin davidrios/pug-tmbundle Syntaxes/Pug.JSON-tmLanguage ./syntaxes/pug.tmLanguage.json"
|
|
},
|
|
"categories": ["Programming Languages"],
|
|
"contributes": {
|
|
"languages": [
|
|
{
|
|
"id": "jade",
|
|
"extensions": [
|
|
".pug",
|
|
".jade"
|
|
],
|
|
"aliases": [
|
|
"Pug",
|
|
"Jade",
|
|
"jade"
|
|
],
|
|
"configuration": "./language-configuration.json"
|
|
}
|
|
],
|
|
"grammars": [
|
|
{
|
|
"language": "jade",
|
|
"scopeName": "text.pug",
|
|
"path": "./syntaxes/pug.tmLanguage.json"
|
|
}
|
|
],
|
|
"configurationDefaults": {
|
|
"[jade]": {
|
|
"diffEditor.ignoreTrimWhitespace": false
|
|
}
|
|
}
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/microsoft/vscode.git"
|
|
}
|
|
}
|