build: enable more EmmyLua checks

- call-non-callable
- missing-fields
- redefined-label
- redefined-local
- undefined-field
- unreachable-code

Promote redefined-local and unreachable-code to warnings.

Fix DOS line-ending handling for multiline semantic tokens, and support
intersection types in the help parser.

AI-assisted
This commit is contained in:
Lewis Russell
2026-09-07 17:04:29 +01:00
committed by Lewis Russell
parent ec65796cea
commit 6a54396db4
42 changed files with 190 additions and 118 deletions

View File

@@ -245,9 +245,9 @@ function M.watchdirs(path, opts, callback)
for name, type in
vim.fs.dir(path, {
depth = max_depth,
skip = function(name)
skip = function(dir)
return not opts.exclude_pattern
or opts.exclude_pattern:match(vim.fs.joinpath(path, name)) == nil
or opts.exclude_pattern:match(vim.fs.joinpath(path, dir)) == nil
end,
})
do