mirror of
https://github.com/akr2002/nv.git
synced 2024-11-09 18:49:45 +00:00
16 lines
347 B
Nix
16 lines
347 B
Nix
{
|
|
plugins.lint = {
|
|
enable = true;
|
|
lintersByFt = {
|
|
nix = ["statix"];
|
|
lua = ["selene"];
|
|
python = ["flake8"];
|
|
javascript = ["eslint_d"];
|
|
javascriptreact = ["eslint_d"];
|
|
typescript = ["eslint_d"];
|
|
typescriptreact = ["eslint_d"];
|
|
json = ["jsonlint"];
|
|
java = ["checkstyle"];
|
|
};
|
|
};
|
|
}
|