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": [
["{", "}"],
["[", "]"],
["(", ")"]
]
}