microsoft/TypeAgent

Public

mirrored from https://github.com/microsoft/TypeAgentAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
copilot/remove-deprecated-dependencies

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

ts/extensions/agr-language/language-configuration.json

27lines · modecode

1{
2 "comments": {
3 "lineComment": "//",
4 "blockComment": ["/*", "*/"]
5 },
6 "brackets": [
7 ["{", "}"],
8 ["[", "]"],
9 ["(", ")"]
10 ],
11 "autoClosingPairs": [
12 { "open": "{", "close": "}" },
13 { "open": "[", "close": "]" },
14 { "open": "(", "close": ")" },
15 { "open": "<", "close": ">" },
16 { "open": "\"", "close": "\"" },
17 { "open": "'", "close": "'" }
18 ],
19 "surroundingPairs": [
20 ["{", "}"],
21 ["[", "]"],
22 ["(", ")"],
23 ["<", ">"],
24 ["\"", "\""],
25 ["'", "'"]
26 ]
27}
28