Add black formatter to project root
This commit is contained in:
parent
70bd601dc1
commit
bf30b31db6
13
format
Executable file
13
format
Executable file
@ -0,0 +1,13 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
if ! which black &>/dev/null; then
|
||||||
|
echo "Black is required to format this project"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
black .
|
||||||
|
ret=$?
|
||||||
|
if [[ $ret -eq 0 ]]; then
|
||||||
|
echo "Successfully formatted project!"
|
||||||
|
fi
|
||||||
|
exit $ret
|
Loading…
x
Reference in New Issue
Block a user