c3ed9fb17b
* feat: cleanup hl groups resolution (#259) * feat: cleanup hl groups resolution * chore: Update docs for - feat: cleanup hl groups resolution * chore: Update docs for - feat: cleanup hl groups resolution (#259) * feat: cleanup hl groups resolution (#259) * feat: cleanup hl groups resolution * chore: Update docs for - feat: cleanup hl groups resolution
26 lines
521 B
Lua
26 lines
521 B
Lua
-- luacheck configuration for fff.nvim
|
|
-- https://luacheck.readthedocs.io/en/stable/config.html
|
|
|
|
-- Neovim globals
|
|
globals = { "vim" }
|
|
|
|
-- Standard library
|
|
std = "luajit"
|
|
|
|
-- Ignore line length (handled by stylua)
|
|
max_line_length = false
|
|
|
|
-- Ignore unused self argument in methods
|
|
self = false
|
|
|
|
-- Files/directories to ignore
|
|
exclude_files = {
|
|
".luarocks/",
|
|
}
|
|
|
|
-- Warn about unused variables, but allow _ prefix convention
|
|
unused_args = true
|
|
ignore = {
|
|
"212", -- unused argument (too noisy for callback-heavy code)
|
|
}
|