nvim-lint: added required files support

This commit is contained in:
rice-cracker-dev 2025-04-12 20:53:19 +07:00
parent ed31499ad6
commit a436aca603
6 changed files with 71 additions and 68 deletions

View file

@ -290,6 +290,7 @@
- `eslint_d` now checks for configuration files to load. - `eslint_d` now checks for configuration files to load.
- Fixed an error where `eslint_d` fails to load. - Fixed an error where `eslint_d` fails to load.
- Added required files support for linters under `vim.diagnostics.nvim-lint.linters.*.required_files`.
[Sc3l3t0n](https://github.com/Sc3l3t0n): [Sc3l3t0n](https://github.com/Sc3l3t0n):

View file

@ -38,8 +38,29 @@ in {
{ {
event = ["BufWritePost"]; event = ["BufWritePost"];
callback = mkLuaInline '' callback = mkLuaInline ''
function() function(args)
require("lint").try_lint() local ft = vim.api.nvim_get_option_value("filetype", { buf = args.buf })
local linters = require("lint").linters
local linters_from_ft = require("lint").linters_by_ft[ft]
-- if no linter is configured for this filetype, stops linting
if linters_from_ft == nil then return end
for _, name in ipairs(linters_from_ft) do
local cwd = linters[name].required_files
-- if no configuration files are configured, lint
if cwd == nil then
require("lint").try_lint(name)
else
-- if configuration files are configured and present in the project, lint
for _, fn in ipairs(cwd) do
if vim.uv.fs_stat(fn) then
require("lint").try_lint(name)
end
end
end
end
end end
''; '';
} }

View file

@ -69,6 +69,13 @@
default = null; default = null;
description = "Parser function"; description = "Parser function";
}; };
required_files = mkOption {
type = nullOr (listOf str);
default = null;
description = "Required files to lint";
example = ["eslint.config.js"];
};
}; };
}; };
in { in {

View file

@ -53,24 +53,20 @@
# TODO: specify packages # TODO: specify packages
defaultDiagnosticsProvider = ["eslint_d"]; defaultDiagnosticsProvider = ["eslint_d"];
diagnosticsProviders = { diagnosticsProviders = {
eslint_d = { eslint_d = let
package = pkgs.eslint_d; pkg = pkgs.eslint_d;
in {
package = pkg;
config = { config = {
# HACK: change if nvim-lint gets a dynamic enable thing cmd = getExe pkg;
parser = mkLuaInline '' required_files = [
function(output, bufnr, cwd) "eslint.config.js"
local markers = { "eslint.config.js", "eslint.config.mjs", "eslint.config.mjs"
".eslintrc", ".eslintrc.json", ".eslintrc.js", ".eslintrc.yml", } ".eslintrc"
for _, filename in ipairs(markers) do ".eslintrc.json"
local path = vim.fs.joinpath(cwd, filename) ".eslintrc.js"
if vim.loop.fs_stat(path) then ".eslintrc.yml"
return require("lint.linters.eslint_d").parser(output, bufnr, cwd) ];
end
end
return {}
end
'';
}; };
}; };
}; };
@ -153,16 +149,9 @@ in {
vim.diagnostics.nvim-lint = { vim.diagnostics.nvim-lint = {
enable = true; enable = true;
linters_by_ft.astro = cfg.extraDiagnostics.types; linters_by_ft.astro = cfg.extraDiagnostics.types;
linters = mkMerge (map ( linters =
name: { mkMerge (map (name: {${name} = diagnosticsProviders.${name}.config;})
${name} = cfg.extraDiagnostics.types);
diagnosticsProviders.${name}.config
// {
cmd = getExe diagnosticsProviders.${name}.package;
};
}
)
cfg.extraDiagnostics.types);
}; };
}) })
]); ]);

View file

@ -55,21 +55,14 @@
package = pkg; package = pkg;
config = { config = {
cmd = getExe pkg; cmd = getExe pkg;
# HACK: change if nvim-lint gets a dynamic enable thing required_files = [
parser = mkLuaInline '' "eslint.config.js"
function(output, bufnr, cwd) "eslint.config.mjs"
local markers = { "eslint.config.js", "eslint.config.mjs", ".eslintrc"
".eslintrc", ".eslintrc.json", ".eslintrc.js", ".eslintrc.yml", } ".eslintrc.json"
for _, filename in ipairs(markers) do ".eslintrc.js"
local path = vim.fs.joinpath(cwd, filename) ".eslintrc.yml"
if vim.loop.fs_stat(path) then ];
return require("lint.linters.eslint_d").parser(output, bufnr, cwd)
end
end
return {}
end
'';
}; };
}; };
}; };

View file

@ -91,27 +91,20 @@
# TODO: specify packages # TODO: specify packages
defaultDiagnosticsProvider = ["eslint_d"]; defaultDiagnosticsProvider = ["eslint_d"];
diagnosticsProviders = { diagnosticsProviders = {
eslint_d = { eslint_d = let
package = pkgs.eslint_d; pkg = pkgs.eslint_d;
config = let in {
pkg = pkgs.eslint_d; package = pkg;
in { config = {
cmd = getExe pkg; cmd = getExe pkg;
# HACK: change if nvim-lint gets a dynamic enable thing required_files = [
parser = mkLuaInline '' "eslint.config.js"
function(output, bufnr, cwd) "eslint.config.mjs"
local markers = { "eslint.config.js", "eslint.config.mjs", ".eslintrc"
".eslintrc", ".eslintrc.json", ".eslintrc.js", ".eslintrc.yml", } ".eslintrc.json"
for _, filename in ipairs(markers) do ".eslintrc.js"
local path = vim.fs.joinpath(cwd, filename) ".eslintrc.yml"
if vim.loop.fs_stat(path) then ];
return require("lint.linters.eslint_d").parser(output, bufnr, cwd)
end
end
return {}
end
'';
}; };
}; };
}; };
@ -221,10 +214,9 @@ in {
linters_by_ft.typescript = cfg.extraDiagnostics.types; linters_by_ft.typescript = cfg.extraDiagnostics.types;
linters_by_ft.typescriptreact = cfg.extraDiagnostics.types; linters_by_ft.typescriptreact = cfg.extraDiagnostics.types;
linters = mkMerge (map (name: { linters =
${name}.cmd = getExe diagnosticsProviders.${name}.package; mkMerge (map (name: {${name} = diagnosticsProviders.${name}.config;})
}) cfg.extraDiagnostics.types);
cfg.extraDiagnostics.types);
}; };
}) })