We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a482b27 commit d66c8adCopy full SHA for d66c8ad
Makefile
@@ -1,4 +1,4 @@
1
-lint: flake8 black-check isort-check
+lint: flake8 black-check isort-check mypy
2
3
flake8:
4
flake8 .
@@ -21,7 +21,7 @@ mypy:
21
test:
22
pytest -v .
23
24
-build:
+build: lint test
25
python3 setup.py sdist bdist_wheel
26
27
test-upload:
setup.py
@@ -5,7 +5,7 @@
5
6
setup(
7
name="pyls-black",
8
- version="0.1.0",
+ version="0.2.0",
9
description="Black plugin for the Python Language Server",
10
long_description=long_description,
11
long_description_content_type="text/markdown",
0 commit comments