diff options
| author | Rémi Verschelde <remi@verschelde.fr> | 2023-01-11 01:10:10 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-01-11 01:10:10 +0100 |
| commit | 5eb161a9c8eb210d461178a7ea5b6368956b45ca (patch) | |
| tree | 76953a5eaf2bef8c24456fce1b541d691577f940 /modules/gdscript/tests/scripts/parser/errors | |
| parent | c2f96a8b837de99c76db55a30f950c337b7637eb (diff) | |
| parent | 44d1d72af19ff7874704fa88d7d08fe4f782c9db (diff) | |
Merge pull request #70595 from adamscott/add-gdscript-editorconfig
Add GDScript `.editorconfig` rules
Diffstat (limited to 'modules/gdscript/tests/scripts/parser/errors')
3 files changed, 5 insertions, 5 deletions
diff --git a/modules/gdscript/tests/scripts/parser/errors/class_name_after_annotation.gd b/modules/gdscript/tests/scripts/parser/errors/class_name_after_annotation.gd index ada6030132..179e454073 100644 --- a/modules/gdscript/tests/scripts/parser/errors/class_name_after_annotation.gd +++ b/modules/gdscript/tests/scripts/parser/errors/class_name_after_annotation.gd @@ -3,4 +3,4 @@ class_name HelloWorld func test(): - pass + pass diff --git a/modules/gdscript/tests/scripts/parser/errors/double_dictionary_comma.gd b/modules/gdscript/tests/scripts/parser/errors/double_dictionary_comma.gd index 92dfb2366d..816783f239 100644 --- a/modules/gdscript/tests/scripts/parser/errors/double_dictionary_comma.gd +++ b/modules/gdscript/tests/scripts/parser/errors/double_dictionary_comma.gd @@ -1,2 +1,2 @@ func test(): - var dictionary = { hello = "world",, } + var dictionary = { hello = "world",, } diff --git a/modules/gdscript/tests/scripts/parser/errors/match_multiple_variable_binds_in_branch.gd b/modules/gdscript/tests/scripts/parser/errors/match_multiple_variable_binds_in_branch.gd index 4608c778aa..7a745bd995 100644 --- a/modules/gdscript/tests/scripts/parser/errors/match_multiple_variable_binds_in_branch.gd +++ b/modules/gdscript/tests/scripts/parser/errors/match_multiple_variable_binds_in_branch.gd @@ -1,4 +1,4 @@ func test(): - match 1: - [[[var a]]], 2: - pass + match 1: + [[[var a]]], 2: + pass |