[json] add tm grammer, not yet enabled

This commit is contained in:
Martin Aeschlimann
2015-11-24 16:56:40 +01:00
parent f84a9013f3
commit 4163a8dcd5
3 changed files with 305 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
{
"name": "json",
"version": "0.1.0",
"publisher": "vscode",
"engines": { "vscode": "*" },
"contributes": {
"languages": [{
"id": "json",
"aliases": ["JSON", "json"],
"extensions": [".json", ".bowerrc", ".jshintrc", ".jscsrc", ".eslintrc"],
"mimetypes": ["application/json"]
}],
"grammars": [{
// "language": "json" : commented out for now, will add once we have rule for comments
"scopeName": "source.json",
"path": "./syntaxes/JSON.tmLanguage"
}]
}
}