mirror of
https://github.com/akr2002/nv.git
synced 2024-11-09 10:39:44 +00:00
17 lines
347 B
Nix
17 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"];
|
||
|
};
|
||
|
};
|
||
|
}
|