10 lines
246 B
Bash
Executable File
10 lines
246 B
Bash
Executable File
#!/usr/bin/env bash
|
|
parent_path=$( cd "$(dirname "${BASH_SOURCE[0]}")" || exit ; pwd -P )
|
|
cd "$parent_path/overlord" || exit
|
|
npx prettier --write src/
|
|
npx ng lint --fix
|
|
cd "$parent_path/brewman" || exit
|
|
isort brewman
|
|
black brewman
|
|
flake8 brewman
|