hotdog/scripts/lint

12 lines
156 B
Text
Raw Normal View History

2020-11-01 16:31:37 +01:00
#!/bin/sh -e
if [ "$1" = '--fix' ]; then
set -x
black .
isort --profile black .
else
set -x
black --check .
isort --profile black --check .
fi