Skip to content

Commit b0d861d

Browse files
committed
up for 1.0.0
1 parent 97f7786 commit b0d861d

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Python Extension Pack Change Log
22

3+
## Version 1.0.0, 21. April 2023
4+
5+
- **Info**: Added:
6+
- "ms-python.flake8"
7+
- "charliermarsh.ruff"
8+
39
## Version 0.9.0
410

511
- **Info**: Added isort and black

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ These are the most useful VSCode Python extensions.
1010
* [Jupyter](https://marketplace.visualstudio.com/items?itemName=ms-toolsai.jupyter) - Notebook support for language kernels that are supported in Jupyter Notebooks today.
1111
* [isort](https://marketplace.visualstudio.com/items?itemName=ms-python.isort) - Provides import sorting using isort.
1212
* [black](https://marketplace.visualstudio.com/items?itemName=ms-python.black-formatter) - Support for the black formatter.
13+
* [flake8](https://marketplace.visualstudio.com/items?itemName=ms-python.flake8) - For the flake8 linter.
1314

1415
* Extension by me:
1516
* [Python Config](https://marketplace.visualstudio.com/items?itemName=franneck94.vscode-python-config) - Creates all needed config files for simple Python projects.
@@ -20,6 +21,7 @@ These are the most useful VSCode Python extensions.
2021
* [TOML Highlighting](https://marketplace.visualstudio.com/items?itemName=tamasfe.even-better-toml) - A TOML language support extension.
2122
* [PyInit](https://marketplace.visualstudio.com/items?itemName=DiogoNolasco.pyinit) - Generates __init__.py files inside your folders and subfolders.
2223
* [Python Type Hint](https://marketplace.visualstudio.com/items?itemName=njqdev.vscode-python-typehint) - Provides type hint auto-completion for Python.
24+
* [Ruff](https://marketplace.visualstudio.com/items?itemName=charliermarsh.ruff) - For the Ruff linter.
2325

2426
## Want to see an extension added?
2527

package.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "vscode-python-dev-extension-pack",
33
"displayName": "Python Dev Extension Pack",
44
"description": "Extensions for Python development.",
5-
"version": "0.9.0",
5+
"version": "1.0.0",
66
"publisher": "franneck94",
77
"engines": {
88
"vscode": "^1.77.0"
@@ -38,6 +38,8 @@
3838
"DiogoNolasco.pyinit",
3939
"njqdev.vscode-python-typehint",
4040
"ms-python.black-formatter",
41-
"ms-python.isort"
41+
"ms-python.isort",
42+
"ms-python.flake8",
43+
"charliermarsh.ruff"
4244
]
4345
}

0 commit comments

Comments
 (0)