diagnostics/nvim-lint: fix invalid setup table call

This commit is contained in:
raf 2025-03-17 11:46:33 +03:00
parent cacbac08fb
commit bc978c4fad
No known key found for this signature in database
GPG key ID: 29D95B64378DB4BF
2 changed files with 15 additions and 17 deletions

View file

@ -13,7 +13,7 @@ in {
vim = { vim = {
startPlugins = ["nvim-lint"]; startPlugins = ["nvim-lint"];
pluginRC.nvim-lint = entryAnywhere '' pluginRC.nvim-lint = entryAnywhere ''
require("lint").setup(${toLuaObject cfg.setupOpts}) require("lint").linters_by_ft(${toLuaObject cfg.linters_by_ft})
''; '';
}; };
}; };

View file

@ -1,11 +1,11 @@
{lib, ...}: let {lib, ...}: let
inherit (lib.options) mkOption mkEnableOption; inherit (lib.options) mkOption mkEnableOption;
inherit (lib.types) attrsOf listOf str; inherit (lib.types) attrsOf listOf str;
inherit (lib.nvim.types) mkPluginSetupOption;
in { in {
options.vim.diagnostics.nvim-lint = { options.vim.diagnostics.nvim-lint = {
enable = mkEnableOption "asynchronous linter plugin for Neovim [nvim-lint]"; enable = mkEnableOption "asynchronous linter plugin for Neovim [nvim-lint]";
setupOpts = mkPluginSetupOption "nvim-lint" {
# nvim-lint does not have a setup table.
linters_by_ft = mkOption { linters_by_ft = mkOption {
type = attrsOf (listOf str); type = attrsOf (listOf str);
default = {}; default = {};
@ -13,15 +13,13 @@ in {
text = ["vale"]; text = ["vale"];
markdown = ["vale"]; markdown = ["vale"];
}; };
description = '' description = ''
Map of filetype to formatters. This option takes a set of Map of filetype to formatters. This option takes a set of `key = value`
`key = value` format where the `value` will be converted format where the `value` will be converted to its Lua equivalent
to its Lua equivalent. You are responsible for passing the through `toLuaObject. You are responsible for passing the correct Nix
correct Nix data types to generate a correct Lua value that data types to generate a correct Lua value that conform is able to
conform is able to accept. accept.
''; '';
}; };
}; };
};
} }