22 lines
401 B
JSON
22 lines
401 B
JSON
{
|
|
"comments": {
|
|
"blockComment": ["<!--", "-->"]
|
|
},
|
|
"brackets": [
|
|
["<", ">"],
|
|
["{", "}"]
|
|
],
|
|
"autoClosingPairs": [
|
|
{ "open": "<", "close": ">" },
|
|
{ "open": "{", "close": "}" },
|
|
{ "open": "\"", "close": "\"" },
|
|
{ "open": "<!--", "close": " -->" }
|
|
],
|
|
"surroundingPairs": [
|
|
["<", ">"],
|
|
["{", "}"],
|
|
["\"", "\""]
|
|
],
|
|
"wordPattern": "[a-zA-Z0-9_-]+"
|
|
}
|