configure luacheck to better undersant LV code (#998)

This commit is contained in:
Abouzar Parvan 2021-07-17 17:41:04 +04:30 committed by GitHub
parent ddb627d004
commit dd5de4217d
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG key ID: 4AEE18F83AFDEB23

38
.luacheckrc Normal file
View file

@ -0,0 +1,38 @@
-- vim: ft=lua tw=80
stds.nvim = {
globals = {
"O",
vim = { fields = { "g" } },
"CONFIG_PATH",
"CACHE_PATH",
"DATA_PATH",
"TERMINAL",
"USER",
"C",
"Config",
"WORKSPACE_PATH",
"JAVA_LS_EXECUTABLE",
"MUtils",
os = {fields = {"capture"}}
},
read_globals = {
"jit",
"os",
"vim",
-- vim = { fields = { "cmd", "api", "fn", "o" } },
},
}
std = "lua51+nvim"
-- Don't report unused self arguments of methods.
self = false
-- Rerun tests only if their modification time changed.
cache = true
ignore = {
"631", -- max_line_length
"212/_.*", -- unused argument, for vars with "_" prefix
}