dump current state (wip-ish)

This commit is contained in:
ducklet 2020-11-01 16:31:37 +01:00
parent 0124c35472
commit 51fb1c9f26
46 changed files with 3749 additions and 0 deletions

11
scripts/lint Executable file
View file

@ -0,0 +1,11 @@
#!/bin/sh -e
if [ "$1" = '--fix' ]; then
set -x
black .
isort --profile black .
else
set -x
black --check .
isort --profile black --check .
fi