vscode/extensions/yaml/language-configuration.json

24 lines
298 B
JSON
Raw Normal View History

2015-11-13 14:39:38 +01:00
{
"comments": {
"lineComment": "#"
},
"brackets": [
["{", "}"],
["[", "]"],
["(", ")"]
],
"autoClosingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""],
["'", "'"]
],
"surroundingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""],
["'", "'"]
2015-11-13 14:39:38 +01:00
]
}