Releases: TechHog8984/luau-format
Releases · TechHog8984/luau-format
v1.9.0
21 Sep 20:23
Compare
Sorry, something went wrong.
No results found
only emit do end when necessary on optimizations
example:
local function a ()
if true then
global = 1
end
if true then
return
end
return
end
now becomes
local function a ()
global = 1
do
return
end
return
end
v1.8.2
17 Aug 19:52
Compare
Sorry, something went wrong.
No results found
v1.8.1
10 Aug 00:54
Compare
Sorry, something went wrong.
No results found
v1.8.0
03 Aug 23:12
Compare
Sorry, something went wrong.
No results found
string.char works with --lua_calls;
--optimize will turn string["char"] into string.char
v1.7.1
24 Jul 16:15
Compare
Sorry, something went wrong.
No results found
v1.7.0
23 Jun 23:33
Compare
Sorry, something went wrong.
No results found
fixed huge memory issue causing crashes
v1.6.2
22 Jun 22:57
Compare
Sorry, something went wrong.
No results found
--optimize on an if will emit do end to prevent double returns
v1.6.1
22 Jun 21:37
Compare
Sorry, something went wrong.
No results found
fix a bug where a table as an interpolated string value would lack spaces necessary to prevent double braces error
v1.6.0
12 Jun 22:42
Compare
Sorry, something went wrong.
No results found
--assume_globals option that will simplify expressions such as unpack or table.unpack -> unpack
v1.5.1
10 Jun 16:14
Compare
Sorry, something went wrong.
No results found
fix for semicolons getting appended inside tables