mirror of
https://github.com/rojo-rbx/rojo.git
synced 2026-04-21 05:06:29 +00:00
Stylua formatting (#785)
Uses Stylua to format all existing Lua files, and adds a CI check in `lint` to pin this improvement. Excludes formatting dependencies, of course.
This commit is contained in:
@@ -80,7 +80,7 @@ return function()
|
||||
ClassName = "Folder",
|
||||
Name = "Parent",
|
||||
Properties = {},
|
||||
Children = {"CHILD"},
|
||||
Children = { "CHILD" },
|
||||
},
|
||||
|
||||
CHILD = {
|
||||
@@ -112,7 +112,7 @@ return function()
|
||||
ClassName = "Folder",
|
||||
Name = "Parent",
|
||||
Properties = {},
|
||||
Children = {"CHILD"},
|
||||
Children = { "CHILD" },
|
||||
},
|
||||
|
||||
CHILD = {
|
||||
@@ -147,7 +147,7 @@ return function()
|
||||
Properties = {
|
||||
Value = {
|
||||
Type = "Vector3",
|
||||
Value = {1, 2, 3},
|
||||
Value = { 1, 2, 3 },
|
||||
},
|
||||
},
|
||||
Children = {},
|
||||
@@ -182,7 +182,7 @@ return function()
|
||||
ClassName = "Folder",
|
||||
Name = "Root",
|
||||
Properties = {},
|
||||
Children = {"CHILD"},
|
||||
Children = { "CHILD" },
|
||||
},
|
||||
|
||||
CHILD = {
|
||||
@@ -247,7 +247,7 @@ return function()
|
||||
ClassName = "Folder",
|
||||
Name = "Root",
|
||||
Properties = {},
|
||||
Children = {"CHILD_A", "CHILD_B"},
|
||||
Children = { "CHILD_A", "CHILD_B" },
|
||||
},
|
||||
|
||||
CHILD_A = {
|
||||
@@ -297,7 +297,7 @@ return function()
|
||||
Ref = "CHILD",
|
||||
},
|
||||
},
|
||||
Children = {"CHILD"},
|
||||
Children = { "CHILD" },
|
||||
},
|
||||
|
||||
CHILD = {
|
||||
|
||||
Reference in New Issue
Block a user