vscode/extensions/pug/language-configuration.json

27 lines
336 B
JSON
Raw Normal View History

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