From 527e4976e4a604adf7cefb16b3d1865691f146a0 Mon Sep 17 00:00:00 2001 From: Serkyo Date: Tue, 12 May 2026 12:30:52 +0200 Subject: [PATCH] fix(workspace): remove std from selene to avoid feature errors --- selene.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/selene.toml b/selene.toml index 66d868b..371667c 100644 --- a/selene.toml +++ b/selene.toml @@ -1,4 +1,6 @@ -std = "lua52" + [rules] unknown_variable = "deny" +# Standard library is omitted to avoid "feature not enabled" errors in the pre-compiled binary. +# Custom globals should be added to the [rules] or via custom std files later.