From 9ae57274ead768be1ab2e2f3d8dc83950565367c Mon Sep 17 00:00:00 2001 From: Filip Tibell Date: Sun, 12 May 2024 13:23:11 +0200 Subject: [PATCH] Update tooling, run formatting --- aftman.toml | 6 +++--- tests/require/tests/state_module.luau | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aftman.toml b/aftman.toml index 38cb7391..3b4fcc98 100644 --- a/aftman.toml +++ b/aftman.toml @@ -1,4 +1,4 @@ [tools] -luau-lsp = "JohnnyMorganz/luau-lsp@1.27.0" -selene = "Kampfkarren/selene@0.26.1" -stylua = "JohnnyMorganz/StyLua@0.19.1" +luau-lsp = "JohnnyMorganz/luau-lsp@1.29.0" +selene = "Kampfkarren/selene@0.27.1" +stylua = "JohnnyMorganz/StyLua@0.20.0" diff --git a/tests/require/tests/state_module.luau b/tests/require/tests/state_module.luau index 9b6135e2..156f5bc3 100644 --- a/tests/require/tests/state_module.luau +++ b/tests/require/tests/state_module.luau @@ -3,7 +3,7 @@ local M = {} M.state = 10 function M.set_state(n: number) - M.state = n + M.state = n end return M