8 lines
284 B
Text
8 lines
284 B
Text
|
|
#!/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/*
|