vscode-extensions.detachhead.basedpyright: init at 1.29.2 (#413088)

This commit is contained in:
Pol Dellaiera
2025-06-18 18:16:25 +02:00
committed by GitHub
2 changed files with 24 additions and 0 deletions
@@ -1339,6 +1339,8 @@ let
};
};
detachhead.basedpyright = callPackage ./detachhead.basedpyright { };
devsense.composer-php-vscode = buildVscodeMarketplaceExtension {
mktplcRef = {
name = "composer-php-vscode";
@@ -0,0 +1,22 @@
{
lib,
vscode-utils,
...
}:
vscode-utils.buildVscodeMarketplaceExtension {
mktplcRef = {
name = "basedpyright";
publisher = "detachhead";
version = "1.29.2";
hash = "sha256-RNX4UG+zHAFOhp8PI6iW3YaX1ODhpwGwjLFe1MkuzZs=";
};
meta = {
changelog = "https://github.com/detachhead/basedpyright/releases";
description = "VS Code static type checking for Python (but based)";
downloadPage = "https://marketplace.visualstudio.com/items?itemName=detachhead.basedpyright";
homepage = "https://docs.basedpyright.com/";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.hasnep ];
};
}