Monorepo for Aesthetic.Computer aesthetic.computer
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 36 lines 1.1 kB view raw
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": "\"", "notIn": ["string", "comment"] }, 16 { "open": "'", "close": "'", "notIn": ["string", "comment"] }, 17 { "open": "`", "close": "`", "notIn": ["string", "comment"] }, 18 { "open": "/*", "close": " */", "notIn": ["string"] } 19 ], 20 "surroundingPairs": [ 21 { "open": "{", "close": "}" }, 22 { "open": "[", "close": "]" }, 23 { "open": "(", "close": ")" }, 24 { "open": "\"", "close": "\"" }, 25 { "open": "'", "close": "'" }, 26 { "open": "`", "close": "`" }, 27 { "open": "<", "close": ">" } 28 ], 29 "folding": { 30 "markers": { 31 "start": "^\\s*//\\s*#?region\\b", 32 "end": "^\\s*//\\s*#?endregion\\b" 33 } 34 } 35 } 36