plugins/none-ls: add checkstyle (#1047)

Add an option to enable checkstyle none-ls source.
This commit is contained in:
Mateus Alves 2024-02-10 03:05:57 -03:00 committed by GitHub
parent 92c623a436
commit 66c069c48d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 4 additions and 0 deletions

View file

@ -36,6 +36,9 @@ with lib; let
bandit = { bandit = {
package = pkgs.python3Packages.bandit; package = pkgs.python3Packages.bandit;
}; };
checkstyle = {
package = pkgs.checkstyle;
};
cppcheck = { cppcheck = {
package = pkgs.cppcheck; package = pkgs.cppcheck;
}; };

View file

@ -59,6 +59,7 @@
diagnostics = { diagnostics = {
ansiblelint.enable = true; ansiblelint.enable = true;
bandit.enable = true; bandit.enable = true;
checkstyle.enable = true;
cppcheck.enable = true; cppcheck.enable = true;
deadnix.enable = true; deadnix.enable = true;
eslint.enable = true; eslint.enable = true;