install ruff and ruff-lsp

This commit is contained in:
Seaswimmer 2024-12-12 11:52:15 -05:00
parent e0657d4346
commit 285dca8f4a
Signed by: cswimr
GPG key ID: 0EC431A8DA8F8087

View file

@ -28,6 +28,11 @@ rec {
''; '';
}; };
home.packages = with pkgs; [
ruff
ruff-lsp
];
programs.vscode = { programs.vscode = {
enable = true; enable = true;
enableUpdateCheck = false; enableUpdateCheck = false;
@ -273,6 +278,7 @@ rec {
"source.organizeImports" = "explicit"; "source.organizeImports" = "explicit";
}; };
}; };
"ruff.path" = [ "${pkgs.ruff}/bin/ruff" ];
"python.terminal.activateEnvironment" = false; "python.terminal.activateEnvironment" = false;
"python.terminal.activateEnvInCurrentTerminal" = false; "python.terminal.activateEnvInCurrentTerminal" = false;
"[csharp]" = { "[csharp]" = {