Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 0 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,5 @@
# Python extension for Visual Studio Code

<p align="center">
<a href="https://travis-ci.org/Microsoft/vscode-python">
<img src="https://travis-ci.org/Microsoft/vscode-python.svg?branch=master" />
</a>
<a href="https://codecov.io/gh/Microsoft/vscode-python">
<img src="https://codecov.io/gh/Microsoft/vscode-python/branch/master/graph/badge.svg" />
</a>
</p>

A [Visual Studio Code](https://code.visualstudio.com/) [extension](https://marketplace.visualstudio.com/VSCode) with rich support for the [Python language](https://www.python.org/) (_including Python 3.6_), with features including the following and more:
* Linting ([Prospector](https://pypi.io/project/prospector/), [Pylint](https://pypi.io/project/pylint/), [pycodestyle](https://pypi.io/project/pycodestyle/), [Flake8](https://pypi.io/project/flake8/), [pylama](https://github.com/klen/pylama), [pydocstyle](https://pypi.io/project/pydocstyle/), [mypy](http://mypy-lang.org/) with config files and plugins)
* Intellisense (autocompletion with support for PEP 484 and PEP 526)
Expand Down
14 changes: 13 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,19 @@
},
"bugs": {
"url": "https://github.com/Microsoft/vscode-python/issues"
},
},
"badges": [
{
"url": "https://travis-ci.org/Microsoft/vscode-python.svg?branch=master",
"href": "https://travis-ci.org/Microsoft/vscode-python",
"description": "Continuous integration"
},
{
"url": "https://codecov.io/gh/Microsoft/vscode-python/branch/master/graph/badge.svg",
"href": "https://codecov.io/gh/Microsoft/vscode-python",
"description": "Test coverage"
}
],
"icon": "icon.png",
"galleryBanner": {
"color": "#1e415e",
Expand Down