4 Commits

Author SHA1 Message Date
Profitroll
8a53acc444 Added flake8, sourcery and pylint 2023-05-22 16:57:48 +02:00
Profitroll
8084ccc169 Fixed publisher name 2023-05-22 16:29:12 +02:00
Profitroll
7b16515c05 Changed publisher and added a few extensions 2023-05-22 16:27:22 +02:00
Profitroll
8e439dc377 Replaced icon with transparent one 2023-05-22 14:57:01 +02:00
5 changed files with 54 additions and 49 deletions

View File

@@ -1,9 +1,10 @@
# Change Log
All notable changes to the "vscodepython" extension pack will be documented in this file.
All notable changes to the "PyPack" extension pack will be documented in this file.
Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.
## v0.0.4
## [Unreleased]
- Initial release
- Added Pylint
- Added Flake8
- Added Sourcery
- Moved Better Comments to UniPack

View File

@@ -1,16 +1,18 @@
# vscodepython README
# PyPack by END PLAY Studio
## Working with Markdown
This pack is being used by the team of END PLAY Studio to develop projects on Python.
You can author your README using Visual Studio Code. Here are some useful editor keyboard shortcuts:
## This pack includes
* Split the editor (`Cmd+\` on macOS or `Ctrl+\` on Windows and Linux).
* Toggle preview (`Shift+Cmd+V` on macOS or `Shift+Ctrl+V` on Windows and Linux).
* Press `Ctrl+Space` (Windows, Linux, macOS) to see a list of Markdown snippets.
## For more information
* [Visual Studio Code's Markdown Support](http://code.visualstudio.com/docs/languages/markdown)
* [Markdown Syntax Reference](https://help.github.com/articles/markdown-basics/)
**Enjoy!**
* [autoDocstring](https://marketplace.visualstudio.com/items?itemName=njpwerner.autodocstring)
* [Black Formatter](https://marketplace.visualstudio.com/items?itemName=ms-python.black-formatter)
* [Even Better TOML](https://marketplace.visualstudio.com/items?itemName=tamasfe.even-better-toml)
* [Flake8](https://marketplace.visualstudio.com/items?itemName=ms-python.flake8)
* [isort](https://marketplace.visualstudio.com/items?itemName=ms-python.isort)
* [markdownlint](https://marketplace.visualstudio.com/items?itemName=DavidAnson.vscode-markdownlint)
* [Pylance](https://marketplace.visualstudio.com/items?itemName=ms-python.vscode-pylance)
* [PyPI Assistant](https://marketplace.visualstudio.com/items?itemName=twixes.pypi-assistant)
* [Python Environment Manager](https://marketplace.visualstudio.com/items?itemName=donjayamanne.python-environment-manager)
* [Python Test Explorer](https://marketplace.visualstudio.com/items?itemName=LittleFoxTeam.vscode-python-test-adapter)
* [Python](https://marketplace.visualstudio.com/items?itemName=ms-python.python)
* [Sourcery](https://marketplace.visualstudio.com/items?itemName=sourcery.sourcery)

BIN
icon.jpg

Binary file not shown.

Before

Width:  |  Height:  |  Size: 35 KiB

BIN
icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 529 KiB

View File

@@ -1,32 +1,34 @@
{
"name": "vscodepython",
"icon": "icon.jpg",
"license": "LICENSE",
"displayName": "VSCodePython",
"description": "Extension Pack For Python",
"version": "0.0.1",
"publisher": "eu.profitroll",
"repository": {
"type": "git",
"url": "https://git.end-play.xyz/profitroll/VSCodePython"
},
"engines": {
"vscode": "^1.78.0"
},
"categories": [
"Extension Packs"
],
"extensionPack": [
"aaron-bond.better-comments",
"DavidAnson.vscode-markdownlint",
"mongodb.mongodb-vscode",
"ms-python.black-formatter",
"ms-python.isort",
"ms-python.python",
"ms-python.vscode-pylance",
"njpwerner.autodocstring",
"tamasfe.even-better-toml",
"twixes.pypi-assistant",
"ZainChen.json"
]
"name": "python-pack-endplaystudio",
"icon": "icon.png",
"license": "LICENSE",
"displayName": "PyPack by END PLAY",
"description": "Extension Pack for Python with addons END PLAY Studio uses.",
"version": "0.0.4",
"publisher": "ENDPLAYStudio",
"repository": {
"type": "git",
"url": "https://git.end-play.xyz/profitroll/VSCodePython"
},
"engines": {
"vscode": "^1.78.0"
},
"categories": [
"Extension Packs"
],
"extensionPack": [
"DavidAnson.vscode-markdownlint",
"donjayamanne.python-environment-manager",
"littlefoxteam.vscode-python-test-adapter",
"ms-python.black-formatter",
"ms-python.flake8",
"ms-python.isort",
"ms-python.pylint",
"ms-python.python",
"ms-python.vscode-pylance",
"njpwerner.autodocstring",
"sourcery.sourcery",
"tamasfe.even-better-toml",
"twixes.pypi-assistant"
]
}