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 6c15211 commit b39acfaCopy full SHA for b39acfa
templates/Makefile.jj2
@@ -13,9 +13,7 @@ lint:
13
bash lint.sh
14
15
format:
16
- isort -y $(find {{name | replace('-', '_')}} -name "*.py"|xargs echo) $(find tests -name "*.py"|xargs echo)
17
- black -l 79 {{name | replace('-', '_')}}
18
- black -l 79 tests
+ bash format.sh
19
20
git-diff-check:
21
git diff --exit-code
templates/format.sh.jj2
@@ -0,0 +1,3 @@
1
+isort -y $(find {{name | replace('-', '_')}} -name "*.py"|xargs echo) $(find tests -name "*.py"|xargs echo)
2
+black -l 79 {{name | replace('-', '_')}}
3
+black -l 79 tests
0 commit comments