Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/extensions/make/language-configuration.json
3290 views
1
{
2
"comments": {
3
"lineComment": {
4
"comment": "#",
5
"noIndent": true
6
}
7
},
8
"brackets": [
9
[
10
"{",
11
"}"
12
],
13
[
14
"[",
15
"]"
16
],
17
[
18
"(",
19
")"
20
]
21
],
22
"autoClosingPairs": [
23
[
24
"{",
25
"}"
26
],
27
[
28
"[",
29
"]"
30
],
31
[
32
"(",
33
")"
34
],
35
{
36
"open": "'",
37
"close": "'",
38
"notIn": [
39
"string",
40
"comment"
41
]
42
},
43
{
44
"open": "\"",
45
"close": "\"",
46
"notIn": [
47
"string",
48
"comment"
49
]
50
}
51
]
52
}
53
54