21 lines
407 B
Nix
21 lines
407 B
Nix
{pkgs, ...}: {
|
|
plugins.lint = {
|
|
enable = true;
|
|
lintersByFt = {
|
|
nix = ["satix"];
|
|
lua = ["selene"];
|
|
python = ["flake8"];
|
|
javascript = ["eslint_d"];
|
|
javascriptreact = ["eslint_d"];
|
|
typescript = ["eslint_d"];
|
|
typescriptreact = ["eslint_d"];
|
|
json = ["jsonlint"];
|
|
java = ["checkstyle"];
|
|
};
|
|
};
|
|
|
|
extraPackages = with pkgs; [
|
|
statix
|
|
];
|
|
}
|