We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f281fcd commit cbede18Copy full SHA for cbede18
Makefile
@@ -21,13 +21,11 @@ test:
21
22
.PHONY: format
23
format:
24
- python -m isort --recursive -y $(SOURCES)
25
- python -m black $(SOURCES)
+ python -m ufmt format $(SOURCES)
26
27
.PHONY: lint
28
lint:
29
- python -m isort --recursive --diff $(SOURCES)
30
- python -m black --check $(SOURCES)
+ python -m ufmt check $(SOURCES)
31
python -m flake8 $(SOURCES)
32
mypy --strict dowsing
33
requirements-dev.txt
@@ -1,9 +1,10 @@
1
-black==19.10b0
+black==20.8b1
2
coverage==4.5.4
3
flake8==3.7.9
4
-isort==4.3.21
5
mypy==0.750
6
tox==3.14.1
7
twine==3.1.1
+ufmt==1.1
8
+usort==0.6.3
9
volatile==2.1.0
10
wheel==0.33.6
0 commit comments