You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-05 12:10:55 +00:00
GDScript: Allow mixed indentation on blank lines
This commit is contained in:
2
modules/gdscript/tests/scripts/parser/.editorconfig
Normal file
2
modules/gdscript/tests/scripts/parser/.editorconfig
Normal file
@@ -0,0 +1,2 @@
|
||||
[*.{gd,out}]
|
||||
trim_trailing_whitespace = false
|
||||
@@ -0,0 +1,20 @@
|
||||
# Empty line:
|
||||
|
||||
|
||||
# Comment line:
|
||||
# Comment.
|
||||
|
||||
func test():
|
||||
print(1)
|
||||
|
||||
if true:
|
||||
|
||||
# Empty line:
|
||||
|
||||
|
||||
print(2)
|
||||
|
||||
# Comment line:
|
||||
# Comment.
|
||||
|
||||
print(3)
|
||||
@@ -0,0 +1,4 @@
|
||||
GDTEST_OK
|
||||
1
|
||||
2
|
||||
3
|
||||
Reference in New Issue
Block a user