Skip to content

Commit c522d6e

Browse files
committed
Merge pull request #25 from Microsoft/languageconf-fixes
Languageconf fixes
2 parents cd42db0 + 889aba9 commit c522d6e

3 files changed

Lines changed: 14 additions & 2 deletions

File tree

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"comments": {
3+
"lineComment": "//",
4+
"blockComment": ["/*", "*/"]
5+
},
6+
"brackets": [
7+
["{", "}"],
8+
["[", "]"],
9+
["(", ")"]
10+
]
11+
}

extensions/csharp/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
"languages": [{
88
"id": "csharp",
99
"extensions": [ ".cs", ".csx" ],
10-
"aliases": [ "C#", "csharp" ]
10+
"aliases": [ "C#", "csharp" ],
11+
"configuration": "./csharp.configuration.json"
1112
}],
1213
"grammars": [{
1314
"language": "csharp",

extensions/python/python.configuration.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"comments": {
33
"lineComment": "#",
4-
"blockComment": [ "''", "''" ]
4+
"blockComment": [ "'''", "'''" ]
55
},
66
"brackets": [
77
["{", "}"],

0 commit comments

Comments
 (0)