Feature: Added lint, version_bump and deploy scripts

This commit is contained in:
2021-01-25 13:14:17 +05:30
parent f2df28ca9c
commit e3d3179cbd
3 changed files with 61 additions and 0 deletions

9
lint.sh Executable file
View File

@ -0,0 +1,9 @@
#!/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