mirror of
https://github.com/godotengine/godot-vscode-plugin.git
synced 2025-12-31 13:48:24 +03:00
30 lines
701 B
JSON
30 lines
701 B
JSON
{
|
|
"comments": {
|
|
"lineComment": "#",
|
|
"blockComment": ["\"\"\"", "\"\"\""]
|
|
},
|
|
"brackets": [
|
|
["(", ")"],
|
|
["[", "]"],
|
|
["{", "}"]
|
|
],
|
|
"autoClosingPairs": [
|
|
["'", "'"],
|
|
["\"", "\""],
|
|
["(", ")"],
|
|
["[", "]"],
|
|
["{", "}"]
|
|
],
|
|
"surroundingPairs": [
|
|
["'", "'"],
|
|
["\"", "\""],
|
|
["(", ")"],
|
|
["[", "]"],
|
|
["{", "}"]
|
|
],
|
|
"indentationRules": {
|
|
"increaseIndentPattern": "^\\s*((class|func|else|elif|for|if|match|while|enum)|(.*\\sdo\\b))\\b[^\\{;]*$",
|
|
"decreaseIndentPattern": "^\\s*([}\\]]([,)]?\\s*(#|$)|\\.[a-zA-Z_]\\w*\\b)|(else|elif)\\b)"
|
|
}
|
|
}
|