20 lines
325 B
Lua
20 lines
325 B
Lua
-- Neovim globals and std
|
|
std = "lua51+vim"
|
|
|
|
-- Globals provided by Neovim
|
|
read_globals = {
|
|
"vim",
|
|
}
|
|
|
|
-- Ignore max line length warnings
|
|
ignore = {
|
|
"631", -- max_line_length
|
|
}
|
|
|
|
-- Don't report unused self arguments in methods
|
|
self = false
|
|
|
|
-- Exclude third-party code
|
|
exclude_files = {
|
|
"lua/custom/plugins/lazy.lua",
|
|
}
|