Skip to content
This repository has been archived by the owner on Jul 12, 2020. It is now read-only.

Commit

Permalink
Normalize indentation problems found with dirtylint
Browse files Browse the repository at this point in the history
  • Loading branch information
LPGhatguy committed Sep 18, 2018
1 parent fcc2df8 commit 4bcd99b
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 20 deletions.
12 changes: 6 additions & 6 deletions lib/Enum/PlaybackState.lua
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
local createEnum = import("../createEnum")

return createEnum("PlaybackState", {
Begin = 0,
Delayed = 1,
Playing = 2,
Paused = 3,
Completed = 4,
Cancelled = 5,
Begin = 0,
Delayed = 1,
Playing = 2,
Paused = 3,
Completed = 4,
Cancelled = 5,
})
10 changes: 5 additions & 5 deletions lib/Enum/ScaleType.lua
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
local createEnum = import("../createEnum")

return createEnum("ScaleType", {
Stretch = 0,
Slice = 1,
Tile = 2,
Fit = 3,
Crop = 4,
Stretch = 0,
Slice = 1,
Tile = 2,
Fit = 3,
Crop = 4,
})
6 changes: 3 additions & 3 deletions lib/Enum/SortOrder.lua
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
local createEnum = import("../createEnum")

return createEnum("SortOrder", {
Name = 0,
Custom = 1,
LayoutOrder = 2,
Name = 0,
Custom = 1,
LayoutOrder = 2,
})
6 changes: 3 additions & 3 deletions lib/Enum/TextXAlignment.lua
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
local createEnum = import("../createEnum")

return createEnum("TextXAlignment", {
Left = 0,
Right = 1,
Center = 2,
Left = 0,
Right = 1,
Center = 2,
})
6 changes: 3 additions & 3 deletions lib/Enum/TextYAlignment.lua
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
local createEnum = import("../createEnum")

return createEnum("TextYAlignment", {
Top = 0,
Center = 1,
Bottom = 2,
Top = 0,
Center = 1,
Bottom = 2,
})

0 comments on commit 4bcd99b

Please sign in to comment.