mirror of
https://github.com/godotengine/godot-vscode-plugin.git
synced 2026-01-04 10:09:58 +03:00
Various Formatter Improvements (#746)
* add new style of formatter snapshot tests * add many new test cases * fix several open issues( #728, #624, #657, #717, #734, likely more)
This commit is contained in:
48
.vscode/test_files.code-snippets
vendored
Normal file
48
.vscode/test_files.code-snippets
vendored
Normal file
@@ -0,0 +1,48 @@
|
||||
{
|
||||
"# --- IN ---": {
|
||||
"scope": "gdscript",
|
||||
"prefix": "#IN",
|
||||
"body": [
|
||||
"# --- IN ---"
|
||||
],
|
||||
"description": "Snapshot Test #IN block"
|
||||
},
|
||||
"# --- OUT ---": {
|
||||
"scope": "gdscript",
|
||||
"prefix": "#OUT",
|
||||
"body": [
|
||||
"# --- OUT ---"
|
||||
],
|
||||
"description": "Snapshot Test #OUT block"
|
||||
},
|
||||
"# --- END ---": {
|
||||
"scope": "gdscript",
|
||||
"prefix": "#END",
|
||||
"body": [
|
||||
"# --- END ---"
|
||||
],
|
||||
"description": "Snapshot Test #END block"
|
||||
},
|
||||
"# --- CONFIG ---": {
|
||||
"scope": "gdscript",
|
||||
"prefix": [
|
||||
"#CO",
|
||||
"#CONFIG"
|
||||
],
|
||||
"body": [
|
||||
"# --- CONFIG ---"
|
||||
],
|
||||
"description": "Snapshot Test #CONFIG block"
|
||||
},
|
||||
"# --- CONFIG ALL ---": {
|
||||
"scope": "gdscript",
|
||||
"prefix": [
|
||||
"#CA",
|
||||
"#CONFIG ALL"
|
||||
],
|
||||
"body": [
|
||||
"# --- CONFIG ALL ---"
|
||||
],
|
||||
"description": "Snapshot Test #CONFIG ALL block"
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user