vscode/extensions/pug/language-configuration.json
2017-09-22 13:50:03 +02:00

27 lines
336 B
JSON

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