0dd278810e
* chore: astro-languageserver => @astrojs/language-server * chore: astro-vscode => vscode * chore: move devDeps to deps * chore: bump language-server to 0.5.0-next.0 * chore: remove astro-docs * chore: update changelog * fix: expose `astro-ls` bin * fix: vscode extension * chore: update changelog
43 lines
1 KiB
JSON
43 lines
1 KiB
JSON
{
|
|
"comments": {
|
|
"blockComment": ["<!--", "-->"]
|
|
},
|
|
"brackets": [
|
|
["---", "---"],
|
|
["<!--", "-->"],
|
|
["<", ">"],
|
|
["{", "}"],
|
|
["(", ")"]
|
|
],
|
|
"autoClosingPairs": [
|
|
{ "open": "{", "close": "}" },
|
|
{ "open": "[", "close": "]" },
|
|
{ "open": "(", "close": ")" },
|
|
{ "open": "'", "close": "'" },
|
|
{ "open": "\"", "close": "\"" },
|
|
{
|
|
"open": "<",
|
|
"close": ">",
|
|
"notIn": ["string"]
|
|
},
|
|
{ "open": "<!--", "close": "-->", "notIn": ["comment", "string"] }
|
|
],
|
|
"autoCloseBefore": ";:.,=}])>` \n\t",
|
|
"surroundingPairs": [
|
|
{ "open": "'", "close": "'" },
|
|
{ "open": "\"", "close": "\"" },
|
|
{ "open": "{", "close": "}" },
|
|
{ "open": "[", "close": "]" },
|
|
{ "open": "(", "close": ")" },
|
|
{ "open": "<", "close": ">" },
|
|
{ "open": "`", "close": "`" },
|
|
{ "open": "_", "close": "_" },
|
|
{ "open": "*", "close": "*" }
|
|
],
|
|
"folding": {
|
|
"markers": {
|
|
"start": "^\\s*<!--\\s*#region\\b.*-->",
|
|
"end": "^\\s*<!--\\s*#endregion\\b.*-->"
|
|
}
|
|
}
|
|
}
|