From 427dfd3184dae05c9d6853e4da9a76f00ebea4ad Mon Sep 17 00:00:00 2001 From: ray-x Date: Fri, 20 Oct 2023 21:05:30 +1100 Subject: [PATCH] luacheckrc --- .luacheckrc | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .luacheckrc diff --git a/.luacheckrc b/.luacheckrc new file mode 100644 index 0000000..746e17a --- /dev/null +++ b/.luacheckrc @@ -0,0 +1,24 @@ +-- Rerun tests only if their modification time changed. +cache = true + +std = luajit +codes = true + +self = false + +-- Glorious list of warnings: https://luacheck.readthedocs.io/en/stable/warnings.html +ignore = { + "212", -- Unused argument, In the case of callback function, _arg_name is easier to understand than _, so this option + "122", -- Indirectly setting a readonly global +} + +globals = { + "_", + "G", + "_GO_NVIM_CFG" +} + +-- Global objects defined by the C code +read_globals = { + "vim", +}