plugins/null-ls: add eslint, eslint_d, and prettier_d sources, extend test for sources, sort attr sets (#458)

Co-authored-by: Gaétan Lepage <33058747+GaetanLepage@users.noreply.github.com>
This commit is contained in:
garaiza-93 2023-07-03 14:08:20 -05:00 committed by GitHub
parent d025d14f4e
commit 89d0b05c9d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 30 additions and 2 deletions

View file

@ -7,6 +7,12 @@
helpers = import ./helpers.nix args;
serverData = {
code_actions = {
eslint = {
package = pkgs.nodePackages.eslint;
};
eslint_d = {
package = pkgs.nodePackages.eslint_d;
};
gitsigns = {};
shellcheck = {
package = pkgs.shellcheck;
@ -26,6 +32,12 @@
deadnix = {
package = pkgs.deadnix;
};
eslint = {
package = pkgs.nodePackages.eslint;
};
eslint_d = {
package = pkgs.nodePackages.eslint_d;
};
flake8 = {
package = pkgs.python3Packages.flake8;
};
@ -70,6 +82,12 @@
cbfmt = {
package = pkgs.cbfmt;
};
eslint = {
package = pkgs.nodePackages.eslint;
};
eslint_d = {
package = pkgs.nodePackages.eslint_d;
};
fnlfmt = {
package = pkgs.fnlfmt;
};
@ -97,6 +115,9 @@
prettier = {
package = pkgs.nodePackages.prettier;
};
prettier_d_slim = {
package = pkgs.nodePackages.prettier_d_slim;
};
protolint = {
package = pkgs.protolint;
};