Compare commits
7 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
8ba999d89e | ||
f67c958bd1 | |||
|
d97b767e48 | ||
|
8a53acc444 | ||
|
8084ccc169 | ||
|
7b16515c05 | ||
|
8e439dc377 |
18
CHANGELOG.md
18
CHANGELOG.md
@@ -1,9 +1,19 @@
|
|||||||
# Change Log
|
# 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.6
|
||||||
|
|
||||||
## [Unreleased]
|
- Added IntelliCode
|
||||||
|
- Added IntelliCode API Usage Examples
|
||||||
|
|
||||||
- Initial release
|
## v0.0.5
|
||||||
|
|
||||||
|
- Moved markdownlint to UniPack
|
||||||
|
|
||||||
|
## v0.0.4
|
||||||
|
|
||||||
|
- Added Pylint
|
||||||
|
- Added Flake8
|
||||||
|
- Added Sourcery
|
||||||
|
- Moved Better Comments to UniPack
|
||||||
|
29
README.md
29
README.md
@@ -1,16 +1,19 @@
|
|||||||
# 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).
|
* [autoDocstring](https://marketplace.visualstudio.com/items?itemName=njpwerner.autodocstring)
|
||||||
* Toggle preview (`Shift+Cmd+V` on macOS or `Shift+Ctrl+V` on Windows and Linux).
|
* [Black Formatter](https://marketplace.visualstudio.com/items?itemName=ms-python.black-formatter)
|
||||||
* Press `Ctrl+Space` (Windows, Linux, macOS) to see a list of Markdown snippets.
|
* [Even Better TOML](https://marketplace.visualstudio.com/items?itemName=tamasfe.even-better-toml)
|
||||||
|
* [Flake8](https://marketplace.visualstudio.com/items?itemName=ms-python.flake8)
|
||||||
## For more information
|
* [IntelliCode API Usage Examples](https://marketplace.visualstudio.com/items?itemName=VisualStudioExptTeam.intellicode-api-usage-examples)
|
||||||
|
* [IntelliCode](https://marketplace.visualstudio.com/items?itemName=VisualStudioExptTeam.vscodeintellicode)
|
||||||
* [Visual Studio Code's Markdown Support](http://code.visualstudio.com/docs/languages/markdown)
|
* [isort](https://marketplace.visualstudio.com/items?itemName=ms-python.isort)
|
||||||
* [Markdown Syntax Reference](https://help.github.com/articles/markdown-basics/)
|
* [Pylance](https://marketplace.visualstudio.com/items?itemName=ms-python.vscode-pylance)
|
||||||
|
* [PyPI Assistant](https://marketplace.visualstudio.com/items?itemName=twixes.pypi-assistant)
|
||||||
**Enjoy!**
|
* [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)
|
||||||
|
65
package.json
65
package.json
@@ -1,32 +1,35 @@
|
|||||||
{
|
{
|
||||||
"name": "vscodepython",
|
"name": "python-pack-endplaystudio",
|
||||||
"icon": "icon.jpg",
|
"icon": "icon.png",
|
||||||
"license": "LICENSE",
|
"license": "LICENSE",
|
||||||
"displayName": "VSCodePython",
|
"displayName": "PyPack by END PLAY",
|
||||||
"description": "Extension Pack For Python",
|
"description": "Extension Pack for Python with addons END PLAY Studio uses.",
|
||||||
"version": "0.0.1",
|
"version": "0.0.6",
|
||||||
"publisher": "eu.profitroll",
|
"publisher": "ENDPLAYStudio",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://git.end-play.xyz/profitroll/VSCodePython"
|
"url": "https://git.end-play.xyz/profitroll/VSCodePython"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"vscode": "^1.78.0"
|
"vscode": "^1.76.0"
|
||||||
},
|
},
|
||||||
"categories": [
|
"categories": [
|
||||||
"Extension Packs"
|
"Extension Packs"
|
||||||
],
|
],
|
||||||
"extensionPack": [
|
"extensionPack": [
|
||||||
"aaron-bond.better-comments",
|
"donjayamanne.python-environment-manager",
|
||||||
"DavidAnson.vscode-markdownlint",
|
"littlefoxteam.vscode-python-test-adapter",
|
||||||
"mongodb.mongodb-vscode",
|
"ms-python.black-formatter",
|
||||||
"ms-python.black-formatter",
|
"ms-python.flake8",
|
||||||
"ms-python.isort",
|
"ms-python.isort",
|
||||||
"ms-python.python",
|
"ms-python.pylint",
|
||||||
"ms-python.vscode-pylance",
|
"ms-python.python",
|
||||||
"njpwerner.autodocstring",
|
"ms-python.vscode-pylance",
|
||||||
"tamasfe.even-better-toml",
|
"njpwerner.autodocstring",
|
||||||
"twixes.pypi-assistant",
|
"sourcery.sourcery",
|
||||||
"ZainChen.json"
|
"tamasfe.even-better-toml",
|
||||||
]
|
"twixes.pypi-assistant",
|
||||||
}
|
"VisualStudioExptTeam.intellicode-api-usage-examples",
|
||||||
|
"VisualStudioExptTeam.vscodeintellicode"
|
||||||
|
]
|
||||||
|
}
|
@@ -1,21 +0,0 @@
|
|||||||
# Welcome to your VS Code Extension Pack
|
|
||||||
|
|
||||||
## What's in the folder
|
|
||||||
|
|
||||||
* This folder contains all of the files necessary for your extension pack.
|
|
||||||
* `package.json` - this is the manifest file that defines the list of extensions of the extension pack.
|
|
||||||
|
|
||||||
## Get up and running straight away
|
|
||||||
|
|
||||||
* Press `F5` to open a new window with your extension loaded.
|
|
||||||
* Open `Extensions Viewlet` and check your extensions are installed.
|
|
||||||
|
|
||||||
## Make changes
|
|
||||||
|
|
||||||
* You can relaunch the extension from the debug toolbar after making changes to the files listed above.
|
|
||||||
* You can also reload (`Ctrl+R` or `Cmd+R` on Mac) the VS Code window with your extension to load your changes.
|
|
||||||
|
|
||||||
## Install your extension
|
|
||||||
|
|
||||||
* To start using your extension with Visual Studio Code copy it into the `<user home>/.vscode/extensions` folder and restart Code.
|
|
||||||
* To share your extension with the world, read on https://code.visualstudio.com/docs about publishing an extension.
|
|
Reference in New Issue
Block a user