From ae1535fcc46ce4ca259d74296ac1460c1117900a Mon Sep 17 00:00:00 2001 From: Filip Tibell Date: Tue, 23 Jan 2024 15:20:38 +0100 Subject: [PATCH] Add stylua and other formatters, apply formatting --- .vscode/extensions.json | 8 ++++++++ .vscode/settings.json | 17 +++++++++++++++++ README.md | 2 +- examples/lua/basic_spawn.luau | 18 +++++++++--------- examples/lua/captures.luau | 2 -- stylua.toml | 9 +++++++++ 6 files changed, 44 insertions(+), 12 deletions(-) create mode 100644 .vscode/extensions.json create mode 100644 .vscode/settings.json create mode 100644 stylua.toml diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 0000000..e4ee693 --- /dev/null +++ b/.vscode/extensions.json @@ -0,0 +1,8 @@ +{ + "recommendations": [ + "rust-lang.rust-analyzer", + "esbenp.prettier-vscode", + "JohnnyMorganz.stylua", + "DavidAnson.vscode-markdownlint" + ] +} diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..a2d490d --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,17 @@ +{ + "luau-lsp.sourcemap.enabled": false, + "luau-lsp.types.roblox": false, + "rust-analyzer.check.command": "clippy", + "editor.formatOnSave": true, + "stylua.searchParentDirectories": true, + "prettier.tabWidth": 2, + "[luau][lua]": { + "editor.defaultFormatter": "JohnnyMorganz.stylua" + }, + "[json][jsonc][markdown][yaml]": { + "editor.defaultFormatter": "esbenp.prettier-vscode" + }, + "[rust]": { + "editor.defaultFormatter": "rust-lang.rust-analyzer" + } +} diff --git a/README.md b/README.md index 46c8d61..b978c12 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,7 @@ lua.globals().set( "readFile", lua.create_async_function(|lua, path: String| async move { // Spawn background task that does not take up resources on the lua thread - // Normally, futures in mlua can not be shared across threads, but this can + // Normally, futures in mlua can not be shared across threads, but this can let task = lua.spawn(async move { match read_to_string(path).await { Ok(s) => Ok(Some(s)), diff --git a/examples/lua/basic_spawn.luau b/examples/lua/basic_spawn.luau index f67726e..b8cce6b 100644 --- a/examples/lua/basic_spawn.luau +++ b/examples/lua/basic_spawn.luau @@ -2,16 +2,16 @@ --!nolint UnknownGlobal local _, err = pcall(function() - local file = readFile("Cargo.toml") - if file ~= nil then - print("Cargo.toml found!") - print("Contents:") - print(file) - else - print("Cargo.toml not found!") - end + local file = readFile("Cargo.toml") + if file ~= nil then + print("Cargo.toml found!") + print("Contents:") + print(file) + else + print("Cargo.toml not found!") + end end) if err ~= nil then - print("Error while reading file: " .. err) + print("Error while reading file: " .. err) end diff --git a/examples/lua/captures.luau b/examples/lua/captures.luau index 0459703..74661af 100644 --- a/examples/lua/captures.luau +++ b/examples/lua/captures.luau @@ -1,12 +1,10 @@ --!nocheck --!nolint UnknownGlobal - if math.random() < 0.25 then error("Unlucky error!") end - local main = coroutine.running() local start = os.clock() diff --git a/stylua.toml b/stylua.toml new file mode 100644 index 0000000..40589d6 --- /dev/null +++ b/stylua.toml @@ -0,0 +1,9 @@ +column_width = 100 +line_endings = "Unix" +indent_type = "Tabs" +indent_width = 4 +quote_style = "AutoPreferDouble" +call_parentheses = "Always" + +[sort_requires] +enabled = true