From cb397b7f92d34adf7ed4a0617239f1c92746c855 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ji=C5=99=C3=AD=20=C5=A0tefka?= Date: Wed, 4 Oct 2023 09:09:56 +0200 Subject: [PATCH] feat(luacheck): add .luacheckrc to add variables that are defined in AstroNvim --- .luacheckrc | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .luacheckrc diff --git a/.luacheckrc b/.luacheckrc new file mode 100644 index 0000000..fac5255 --- /dev/null +++ b/.luacheckrc @@ -0,0 +1,9 @@ +std = { + globals = { + "vim", + "require", + }, + read_globals = { + "fallback", + }, +}