init with crummy buzzer & docker setup

so much boilerplate :O
This commit is contained in:
ducklet 2021-01-29 01:20:17 +01:00
commit f6bf544f54
23 changed files with 746 additions and 0 deletions

7
scripts/lint Executable file
View file

@ -0,0 +1,7 @@
#!/bin/sh -eux
autoflake --in-place --recursive --remove-duplicate-keys --remove-unused-variables --remove-all-unused-imports --ignore-init-module-imports "$RUN_DIR"
black "$RUN_DIR"
isort --profile black "$RUN_DIR"
prettier --write "$RUN_DIR"/public
shellcheck "$RUN_DIR"/scripts/*