| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 | local M = {}local u = require "utils"local null_ls = require "null-ls"local nodejs_local_providers = { "prettier", "prettierd", "prettier_d_slim", "eslint_d", "eslint" }M.requested_providers = {}local function is_nodejs_provider(provider)  for _, local_provider in ipairs(nodejs_local_providers) do    if local_provider == provider.exe then      return true    end  end  return falseendlocal function is_provider_found(provider)  -- special case: fallback to "eslint"  -- https://github.com/jose-elias-alvarez/null-ls.nvim/blob/9b8458bd1648e84169a7e8638091ba15c2f20fc0/doc/BUILTINS.md#eslint  provider._opts.command = provider._opts.command == "eslint_d" and "eslint" or provider._opts.command  local retval = { is_local = false, path = nil }  if vim.fn.executable(provider._opts.command) == 1 then    return false, provider._opts.command  end  if is_nodejs_provider(provider) then    vim.cmd "let root_dir = FindRootDirectory()"    local root_dir = vim.api.nvim_get_var "root_dir"    local local_provider_command = root_dir .. "/node_modules/.bin/" .. provider._opts.command    if vim.fn.executable(local_provider_command) == 1 then      retval.is_local = true      retval.path = local_provider_command    end  end  return retval.is_local, retval.pathendlocal function validate_provider(provider)  local is_local, provider_path = is_provider_found(provider)  if not provider_path then    u.lvim_log(string.format("Unable to find the path for: [%s]", provider))    return false  end  if is_local then    provider._opts.command = provider_path  end  return trueend-- TODO: for linters and formatters with spaces and '-' replace with '_'function M.setup(filetype)  for _, formatter in pairs(lvim.lang[filetype].formatters) do    local builtin_formatter = null_ls.builtins.formatting[formatter.exe]    -- FIXME: why doesn't this work?    -- builtin_formatter._opts.args = formatter.args or builtin_formatter._opts.args    -- builtin_formatter._opts.to_stdin = formatter.stdin or builtin_formatter._opts.to_stdin    table.insert(M.requested_providers, builtin_formatter)    u.lvim_log(string.format("Using format provider: [%s]", formatter.exe))  end  for _, linter in pairs(lvim.lang[filetype].linters) do    local builtin_diagnoser = null_ls.builtins.diagnostics[linter.exe]    -- FIXME: why doesn't this work?    -- builtin_diagnoser._opts.args = linter.args or builtin_diagnoser._opts.args    -- builtin_diagnoser._opts.to_stdin = linter.stdin or builtin_diagnoser._opts.to_stdin    table.insert(M.requested_providers, builtin_diagnoser)    u.lvim_log(string.format("Using linter provider: [%s]", linter.exe))  end  for idx, provider in pairs(M.requested_providers) do    if not validate_provider(provider) then      table.remove(M.requested_providers, idx)    end  end  null_ls.register { sources = M.requested_providers }endreturn M
 |