This repository has been archived on 2024-09-09 . You can view files and clone it, but cannot push or open issues or pull requests.
475ae45853
30 lines
633 B
JSON
30 lines
633 B
JSON
{
|
|||
"comments": {
|
|||
"lineComment": "//",
|
|||
"blockComment": [ "/*", "*/" ]
|
|||
},
|
|||
"brackets": [
|
|||
["{", "}"],
|
|||
["[", "]"],
|
|||
["(", ")"]
|
|||
],
|
|||
"autoClosingPairs": [
|
|||
{ "open": "{", "close": "}" },
|
|||
{ "open": "[", "close": "]" },
|
|||
{ "open": "(", "close": ")" },
|
|||
{ "open": "'", "close": "'", "notIn": ["string", "comment"] },
|
|||
{ "open": "\"", "close": "\"", "notIn": ["string"] },
|
|||
{ "open": "`", "close": "`", "notIn": ["string", "comment"] },
|
|||
{ "open": "/**", "close": " */", "notIn": ["string"] }
|
|||
],
|
|||
"surroundingPairs": [
|
|||
["{", "}"],
|
|||
["[", "]"],
|
|||
["(", ")"],
|
|||
["<", ">"],
|
|||
["'", "'"],
|
|||
["\"", "\""],
|
|||
["`", "`"]
|
|||
]
|
|||
}
|