Files
sx/editors/vscode/language-configuration.json
2026-02-09 18:07:41 +02:00

23 lines
485 B
JSON

{
"comments": {
"lineComment": "//"
},
"brackets": [
["(", ")"]
],
"autoClosingPairs": [
{ "open": "{", "close": "}" },
{ "open": "(", "close": ")" },
{ "open": "\"", "close": "\"", "notIn": ["string"] }
],
"surroundingPairs": [
{ "open": "{", "close": "}" },
{ "open": "(", "close": ")" },
{ "open": "\"", "close": "\"" }
],
"indentationRules": {
"increaseIndentPattern": "\\{\\s*$",
"decreaseIndentPattern": "^\\s*\\}"
}
}