mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-26 03:29:00 +01:00
[json] add tm grammer, not yet enabled
This commit is contained in:
19
extensions/json/package.json
Normal file
19
extensions/json/package.json
Normal 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"
|
||||
}]
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user