You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-08 12:40:44 +00:00
Add GDScript .editorconfig rules
- Uniformize `.gd` unit test files indentation to tabs (where needed)
This commit is contained in:
@@ -1,27 +1,27 @@
|
||||
func foo(x):
|
||||
match x:
|
||||
1:
|
||||
print("1")
|
||||
2:
|
||||
print("2")
|
||||
[1, 2]:
|
||||
print("[1, 2]")
|
||||
3 or 4:
|
||||
print("3 or 4")
|
||||
4:
|
||||
print("4")
|
||||
{1 : 2, 2 : 3}:
|
||||
print("{1 : 2, 2 : 3}")
|
||||
_:
|
||||
print("wildcard")
|
||||
match x:
|
||||
1:
|
||||
print("1")
|
||||
2:
|
||||
print("2")
|
||||
[1, 2]:
|
||||
print("[1, 2]")
|
||||
3 or 4:
|
||||
print("3 or 4")
|
||||
4:
|
||||
print("4")
|
||||
{1 : 2, 2 : 3}:
|
||||
print("{1 : 2, 2 : 3}")
|
||||
_:
|
||||
print("wildcard")
|
||||
|
||||
func test():
|
||||
foo(0)
|
||||
foo(1)
|
||||
foo(2)
|
||||
foo([1, 2])
|
||||
foo(3)
|
||||
foo(4)
|
||||
foo([4,4])
|
||||
foo({1 : 2, 2 : 3})
|
||||
foo({1 : 2, 4 : 3})
|
||||
foo(0)
|
||||
foo(1)
|
||||
foo(2)
|
||||
foo([1, 2])
|
||||
foo(3)
|
||||
foo(4)
|
||||
foo([4,4])
|
||||
foo({1 : 2, 2 : 3})
|
||||
foo({1 : 2, 4 : 3})
|
||||
|
||||
Reference in New Issue
Block a user