Fix #47, add support for comments and brackets for JSX

This commit is contained in:
Johannes Rieken 2015-11-24 16:19:14 +01:00
parent 3bf9b6e424
commit 3f7972116a
2 changed files with 13 additions and 1 deletions

View file

@ -0,0 +1,11 @@
{
"comments": {
"lineComment": "//",
"blockComment": [ "/*", "*/" ]
},
"brackets": [
["{", "}"],
["[", "]"],
["(", ")"]
]
}

View file

@ -7,7 +7,8 @@
"languages": [{
"id": "javascriptreact",
"aliases": ["JavaScript React","jsx"],
"extensions": [".jsx"]
"extensions": [".jsx"],
"configuration": "./javascript.configuration.json"
},
{
"id": "javascript",