Merge pull request #328632 from amadejkastelic/ms-python

vscode-extensions: add ms-python.flake8 and ms-python.pylint, update ms-python.black-formatter
This commit is contained in:
❄️ 2024-07-20 16:40:58 -03:00 committed by GitHub
commit 35ed1f1d35
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 49 additions and 5 deletions

View File

@ -1085,6 +1085,12 @@
name = "alyaeanyx";
keys = [ { fingerprint = "1F73 8879 5E5A 3DFC E2B3 FA32 87D1 AADC D25B 8DEE"; } ];
};
amadejkastelic = {
email = "amadejkastelic7@gmail.com";
github = "amadejkastelic";
githubId = 26391003;
name = "Amadej Kastelic";
};
aman9das = {
email = "amandas62640@gmail.com";
github = "Aman9das";

View File

@ -3178,15 +3178,36 @@ let
mktplcRef = {
name = "black-formatter";
publisher = "ms-python";
version = "2023.4.1";
hash = "sha256-IJaLke0WF1rlKTiuwJHAXDQB1SS39AoQhc4iyqqlTyY=";
version = "2024.2.0";
hash = "sha256-qIO+YqTXjwgznzUlnPSts1R2BM6iN8B9vESkelGPgZM=";
};
meta = with lib; {
meta = {
changelog = "https://marketplace.visualstudio.com/items/ms-python.black-formatter/changelog";
description = "Formatter extension for Visual Studio Code using black";
downloadPage = "https://marketplace.visualstudio.com/items?itemName=ms-python.black-formatter";
homepage = "https://github.com/microsoft/vscode-black-formatter";
license = licenses.mit;
maintainers = with maintainers; [ sikmir ];
license = lib.licenses.mit;
maintainers = with lib.maintainers; [
amadejkastelic
sikmir
];
};
};
ms-python.flake8 = buildVscodeMarketplaceExtension {
mktplcRef = {
name = "flake8";
publisher = "ms-python";
version = "2023.10.0";
hash = "sha256-4Vjw8yJPrxLg0hcoTw8AEBEcmQ9sEUNqFaHLxICks0E=";
};
meta = {
changelog = "https://marketplace.visualstudio.com/items/ms-python.flake8/changelog";
description = "Python linting support for VS Code using Flake8";
downloadPage = "https://marketplace.visualstudio.com/items?itemName=ms-python.flake8";
homepage = "https://github.com/microsoft/vscode-flake8";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.amadejkastelic ];
};
};
@ -3206,6 +3227,23 @@ 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.python = callPackage ./ms-python.python { };
ms-python.debugpy = buildVscodeMarketplaceExtension {