9 lines
156 B
Bash
Executable File
9 lines
156 B
Bash
Executable File
#!/usr/bin/env sh
|
|
set -eux
|
|
|
|
env PYTHONPATH=. poetry run mypy .
|
|
poetry run black --check .
|
|
./manage.sh test
|
|
yarn run stylelint '**/*.sass'
|
|
yarn run eslint .
|