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