From 9fc120edc511c4847c427cb488a89af24b5eeee0 Mon Sep 17 00:00:00 2001 From: Smirnov Oleksandr Date: Thu, 20 Jul 2023 00:52:13 +0300 Subject: [PATCH] chore(lua_ls): now lua_ls knows about testing functions --- .luarc.json | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .luarc.json diff --git a/.luarc.json b/.luarc.json new file mode 100644 index 0000000..a0d5712 --- /dev/null +++ b/.luarc.json @@ -0,0 +1,10 @@ +{ + "diagnostics.globals": [ + "describe", + "it", + "before_each", + "after_each", + "before_all", + "after_all" + ] +}