This commit is contained in:
Aditya 2024-03-04 22:35:00 +05:30
parent a58b803ad2
commit 2b78342829
Signed by: aditya
SSH key fingerprint: SHA256:jL1IvWsjjlPtw6HvDIHfXfhO9IkIokNEyIfuFhSdoyU
2 changed files with 17 additions and 0 deletions

View file

@ -20,6 +20,7 @@
./languages/treesitter/ts-autotag.nix
./languages/treesitter/treesitter-context-commentstring.nix
./languages/nvim-jdtls.nix
./languages/nvim-lint.nix
./dap/dap.nix

View file

@ -0,0 +1,16 @@
{
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"];
};
};
}