1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-23 22:30:04 +08:00
SpaceVim/bundle/telescope-fzf-native.nvim/.luacheckrc

17 lines
451 B
Lua
Vendored

-- cache false so i don't need sudo upstream
cache = false
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 is set to off.
"122", -- Indirectly setting a readonly global
}
-- Global objects defined by the C code
read_globals = {
"vim",
}