perform some statix linting and fixes

This commit is contained in:
Tanish2002 2023-05-22 15:45:47 +05:30 committed by Gaétan Lepage
parent eee375e97e
commit efdcbe225f
57 changed files with 196 additions and 221 deletions

View file

@ -212,7 +212,7 @@ with lib; let
};
workspace = {
library = mkOption {
type = types.nullOr (types.either types.str (helpers.rawType));
type = types.nullOr (types.either types.str helpers.rawType);
description = ''
An array of abosolute or workspace-relative paths that will be added to the workspace
diagnosis - meaning you will get completion and context from these library files.
@ -356,6 +356,6 @@ with lib; let
];
in {
imports =
lib.lists.map (lspHelpers.mkLsp) servers
lib.lists.map lspHelpers.mkLsp servers
++ [./pylsp.nix];
}