vscode-extensions.ms-python.pylint: move extension into its own directory, bump
This commit is contained in:
@@ -3477,22 +3477,7 @@ let
|
||||
};
|
||||
};
|
||||
|
||||
ms-python.pylint = buildVscodeMarketplaceExtension {
|
||||
mktplcRef = {
|
||||
name = "pylint";
|
||||
publisher = "ms-python";
|
||||
version = "2023.10.1";
|
||||
hash = "sha256-1tI5u33c5CHFQxkJZ/OxW3ZA5qPr4RoCIf6dqIMPykQ=";
|
||||
};
|
||||
meta = {
|
||||
changelog = "https://marketplace.visualstudio.com/items/ms-python.pylint/changelog";
|
||||
description = "Python linting support for VS Code using Pylint";
|
||||
downloadPage = "https://marketplace.visualstudio.com/items?itemName=ms-python.pylint";
|
||||
homepage = "https://github.com/microsoft/vscode-pylint";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = [ lib.maintainers.amadejkastelic ];
|
||||
};
|
||||
};
|
||||
ms-python.pylint = callPackage ./ms-python.pylint { };
|
||||
|
||||
ms-python.mypy-type-checker = callPackage ./ms-python.mypy-type-checker { };
|
||||
|
||||
|
||||
@@ -0,0 +1,21 @@
|
||||
{
|
||||
lib,
|
||||
vscode-utils,
|
||||
}:
|
||||
|
||||
vscode-utils.buildVscodeMarketplaceExtension {
|
||||
mktplcRef = {
|
||||
publisher = "ms-python";
|
||||
name = "pylint";
|
||||
version = "2024.2.0";
|
||||
hash = "sha256-z9bfV2JPFyDk+bgWFYua2462df36MZy3GSVKhrm2Q6Q=";
|
||||
};
|
||||
meta = {
|
||||
changelog = "https://marketplace.visualstudio.com/items/ms-python.pylint/changelog";
|
||||
description = "Python linting support for VS Code using Pylint";
|
||||
downloadPage = "https://marketplace.visualstudio.com/items?itemName=ms-python.pylint";
|
||||
homepage = "https://github.com/microsoft/vscode-pylint";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = [ lib.maintainers.amadejkastelic ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user