24d8c0515d
git-subtree-dir: packages/vscode git-subtree-mainline:0aca1c51de
git-subtree-split:58c04d96c2
28 lines
820 B
JSON
28 lines
820 B
JSON
{
|
|
"attribution-notice": {
|
|
"author-of-most-of-this-file": "Danny Tuppeny",
|
|
"source": "https://github.com/Dart-Code/Dart-Code/blob/master/syntaxes/dart.json"
|
|
},
|
|
"comments": {
|
|
"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": [
|
|
["{", "}"],
|
|
["[", "]"],
|
|
["(", ")"],
|
|
["<", ">"],
|
|
["'", "'"],
|
|
["\"", "\""],
|
|
["`", "`"]
|
|
]
|
|
}
|