Added flake8, sourcery and pylint
This commit is contained in:
parent
8084ccc169
commit
8a53acc444
11
CHANGELOG.md
11
CHANGELOG.md
@ -1,9 +1,10 @@
|
|||||||
# 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.4
|
||||||
|
|
||||||
## [Unreleased]
|
- Added Pylint
|
||||||
|
- Added Flake8
|
||||||
- Initial release
|
- Added Sourcery
|
||||||
|
- Moved Better Comments to UniPack
|
||||||
|
28
README.md
28
README.md
@ -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).
|
* [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
|
* [isort](https://marketplace.visualstudio.com/items?itemName=ms-python.isort)
|
||||||
|
* [markdownlint](https://marketplace.visualstudio.com/items?itemName=DavidAnson.vscode-markdownlint)
|
||||||
* [Visual Studio Code's Markdown Support](http://code.visualstudio.com/docs/languages/markdown)
|
* [Pylance](https://marketplace.visualstudio.com/items?itemName=ms-python.vscode-pylance)
|
||||||
* [Markdown Syntax Reference](https://help.github.com/articles/markdown-basics/)
|
* [PyPI Assistant](https://marketplace.visualstudio.com/items?itemName=twixes.pypi-assistant)
|
||||||
|
* [Python Environment Manager](https://marketplace.visualstudio.com/items?itemName=donjayamanne.python-environment-manager)
|
||||||
**Enjoy!**
|
* [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)
|
||||||
|
64
package.json
64
package.json
@ -1,32 +1,34 @@
|
|||||||
{
|
{
|
||||||
"name": "python-pack-endplaystudio",
|
"name": "python-pack-endplaystudio",
|
||||||
"icon": "icon.png",
|
"icon": "icon.png",
|
||||||
"license": "LICENSE",
|
"license": "LICENSE",
|
||||||
"displayName": "PyPack by END PLAY",
|
"displayName": "PyPack by END PLAY",
|
||||||
"description": "Extension Pack for Python with addons END PLAY Studio uses.",
|
"description": "Extension Pack for Python with addons END PLAY Studio uses.",
|
||||||
"version": "0.0.3",
|
"version": "0.0.4",
|
||||||
"publisher": "ENDPLAYStudio",
|
"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.78.0"
|
||||||
},
|
},
|
||||||
"categories": [
|
"categories": [
|
||||||
"Extension Packs"
|
"Extension Packs"
|
||||||
],
|
],
|
||||||
"extensionPack": [
|
"extensionPack": [
|
||||||
"aaron-bond.better-comments",
|
"DavidAnson.vscode-markdownlint",
|
||||||
"DavidAnson.vscode-markdownlint",
|
"donjayamanne.python-environment-manager",
|
||||||
"donjayamanne.python-environment-manager",
|
"littlefoxteam.vscode-python-test-adapter",
|
||||||
"littlefoxteam.vscode-python-test-adapter",
|
"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",
|
||||||
]
|
"tamasfe.even-better-toml",
|
||||||
}
|
"twixes.pypi-assistant"
|
||||||
|
]
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user