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 b50fb1f commit dd06505Copy full SHA for dd06505
.travis.yml
@@ -7,4 +7,4 @@ install:
7
- "pip install pipenv"
8
- "pipenv install --dev --skip-lock"
9
script:
10
- - "make test lint"
+ - "make test lint check-fmt"
Makefile
@@ -19,3 +19,11 @@ test:
19
20
lint:
21
pylint $(APP) || true
22
+
23
+fmt:
24
+ isort -rc --atomic
25
+ black .
26
27
+check-fmt:
28
+ isort -rc --check
29
+ black . --check --diff
0 commit comments