File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ Write-Host " ---------- Reformating with black... ----------" - ForegroundColor Blue
2+ black .\ml_rest_fastapi .\tests
3+ Write-Host " ---------- Analysing with pylint... -----------" - ForegroundColor Blue
4+ pylint -- recursive= y .\ml_rest_fastapi .\tests
5+ Write-Host " ---------- Validating with mypy... ------------" - ForegroundColor Blue
6+ mypy -- pretty -- config- file= mypy.ini .\ml_rest_fastapi
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+ echo -e " \033[1;34m---------- Reformating with black... ----------\033[0m"
3+ black ./ml_rest_fastapi ./tests
4+ echo -e " \033[1;34m---------- Analysing with pylint... -----------\033[0m"
5+ pylint --recursive=y ./ml_rest_fastapi ./tests
6+ echo -e " \033[1;34m---------- Validating with mypy... ------------\033[0m"
7+ mypy --pretty --config-file=mypy.ini ./ml_rest_fastapi
You can’t perform that action at this time.
0 commit comments