vscode/extensions/swift/language-configuration.json

27 lines
361 B
JSON
Raw Normal View History

2015-11-13 14:39:38 +01:00
{
"comments": {
"lineComment": "//",
"blockComment": [ "/*", "*/" ]
},
"brackets": [
["{", "}"],
["[", "]"],
["(", ")"]
2016-04-21 22:34:15 +02:00
],
"autoClosingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""],
["'", "'"],
["`", "`"]
],
"surroundingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""],
["'", "'"],
["`", "`"]
2015-11-13 14:39:38 +01:00
]
}