style: apply formatting to all files

This commit is contained in:
Erica Marigold 2024-11-25 11:47:56 +00:00
parent ca881272be
commit 21c4a0b9cf
3 changed files with 42 additions and 42 deletions

View file

@ -1,7 +1,7 @@
-- TODO: Make use of returned exit code. Currently this script will get
-- required by a pesde generated linker script, and due to a lune bug,
-- exiting from within a required module causes a non-winding panic
-- See https://github.com/lune-org/lune/pull/247 for more details
require("./lune_packages/core")("JohnnyMorganz/luau-lsp", _G.PESDE_ROOT)
-- TODO: Make use of returned exit code. Currently this script will get
-- required by a pesde generated linker script, and due to a lune bug,
-- exiting from within a required module causes a non-winding panic
-- See https://github.com/lune-org/lune/pull/247 for more details
require("./lune_packages/core")("JohnnyMorganz/luau-lsp", _G.PESDE_ROOT)

View file

@ -1,7 +1,7 @@
-- TODO: Make use of returned exit code. Currently this script will get
-- required by a pesde generated linker script, and due to a lune bug,
-- exiting from within a required module causes a non-winding panic
-- See https://github.com/lune-org/lune/pull/247 for more details
require("./lune_packages/core")("JohnnyMorganz/stylua", _G.PESDE_ROOT)
-- TODO: Make use of returned exit code. Currently this script will get
-- required by a pesde generated linker script, and due to a lune bug,
-- exiting from within a required module causes a non-winding panic
-- See https://github.com/lune-org/lune/pull/247 for more details
require("./lune_packages/core")("JohnnyMorganz/stylua", _G.PESDE_ROOT)

View file

@ -1,28 +1,28 @@
local function eq(this: any, that: any): boolean
if type(this) ~= type(that) then
return false
end
if type(this) == "table" then
local visited = {}
for key, value in pairs(this) do
if not eq(value, that[key]) then
return false
end
visited[key] = true
end
for key, _ in pairs(that) do
if not visited[key] then
return false
end
end
return true
end
return this == that
end
return eq
local function eq(this: any, that: any): boolean
if type(this) ~= type(that) then
return false
end
if type(this) == "table" then
local visited = {}
for key, value in pairs(this) do
if not eq(value, that[key]) then
return false
end
visited[key] = true
end
for key, _ in pairs(that) do
if not visited[key] then
return false
end
end
return true
end
return this == that
end
return eq