mirror of
https://github.com/microsoft/vscode.git
synced 2026-02-25 04:07:37 +00:00
Fix #47, add support for comments and brackets for JSX
This commit is contained in:
11
extensions/javascript/javascript.configuration.json
Normal file
11
extensions/javascript/javascript.configuration.json
Normal file
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"comments": {
|
||||
"lineComment": "//",
|
||||
"blockComment": [ "/*", "*/" ]
|
||||
},
|
||||
"brackets": [
|
||||
["{", "}"],
|
||||
["[", "]"],
|
||||
["(", ")"]
|
||||
]
|
||||
}
|
||||
@@ -7,7 +7,8 @@
|
||||
"languages": [{
|
||||
"id": "javascriptreact",
|
||||
"aliases": ["JavaScript React","jsx"],
|
||||
"extensions": [".jsx"]
|
||||
"extensions": [".jsx"],
|
||||
"configuration": "./javascript.configuration.json"
|
||||
},
|
||||
{
|
||||
"id": "javascript",
|
||||
|
||||
Reference in New Issue
Block a user