12345678910111213141516171819202122232425 |
- {
- "comments": {
- "lineComment": "//",
- "blockComment": ["/*", "*/"]
- },
- "brackets": [
- ["(", ")"],
- ["[", "]"],
- ["{", "}"]
- ],
- "autoClosingPairs": [
- ["'", "'"],
- ["\"", "\""],
- ["(", ")"],
- ["[", "]"],
- ["{", "}"]
- ],
- "surroundingPairs": [
- ["'", "'"],
- ["\"", "\""],
- ["(", ")"],
- ["[", "]"],
- ["{", "}"]
- ]
- }
|