vscode/extensions/pug/language-configuration.json
2017-01-30 21:59:59 +01:00

24 lines
300 B
JSON

{
"comments": {
"lineComment": "//-"
},
"brackets": [
["{", "}"],
["[", "]"],
["(", ")"]
],
"autoClosingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["'", "'"],
["\"", "\""]
],
"surroundingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["'", "'"],
["\"", "\""]
]
}