diff --git a/README.md b/README.md index fb32616..a13679a 100644 --- a/README.md +++ b/README.md @@ -2,9 +2,12 @@ An extension pack for Python development in VS Code. Easiest way to install is via the marketplace. ## Contents -### (MS-Python) Python, Pylance and Pylint +### (MS-Python) Python, Pylance Auto-completion, code analysis, code formatting and debugging. +### (Astral Software) Ruff +Rust-based python linter + ### (RedHat) YAML Language Support Support for YAML files. @@ -29,18 +32,8 @@ Automatically indents your code while you're writing it. ### (hbenl/littlefoxteam) Test Explorer/Python Test Adapter Visually run and debug your tests instead of running in the termainal. -### (batisteo) Django -Useful syntax autocompletion and snippets for Django - -### (2gua) Rainbow Brackets -For those who love nesting nested functions or are addicted to list comprehensions within list comprehensions. - ### (GitHub) Copilot -For the lazy programmer (yes, me) who'd rather have an AI write all the boring parts of the code - -### (VisualStudioExptTeam) IntelliCode -For the even lazier programmer (still me) who thinks Copilot isn't enough. - +Auomatic completion helper ## Manual installation diff --git a/package.json b/package.json index 74e59be..399cb82 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "code-pypack", "displayName": "Code PyPack", "description": "VS Code extension package for Python development.", - "version": "0.0.2", + "version": "0.0.3", "engines": { "vscode": "^1.60.0" }, @@ -26,7 +26,8 @@ "extensionPack": [ "ms-python.python", "ms-python.vscode-pylance", - "ms-python.pylint", + "charliermarsh.ruff", + "ms-python.black-formatter", "redhat.vscode-yaml", "wholroyd.jinja", "njqdev.vscode-python-typehint", @@ -37,9 +38,6 @@ "KevinRose.vsc-python-indent", "hbenl.vscode-test-explorer", "littlefoxteam.vscode-python-test-adapter", - "batisteo.vscode-django", - "2gua.rainbow-brackets", - "GitHub.copilot", - "VisualStudioExptTeam.vscodeintellicode" + "GitHub.copilot" ] } \ No newline at end of file