quiz/scripts/lint

9 lines
331 B
Text
Raw Permalink Normal View History

#!/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/*
MYPYPATH="$RUN_DIR"/stubs mypy "$RUN_DIR"/quiz