We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2942362 commit 85ae538Copy full SHA for 85ae538
1 file changed
make.ps1
@@ -1,6 +1,8 @@
1
-Write-Host "---------- Reformating with black... ----------" -ForegroundColor Blue
+$StyleOn="$($PSStyle.Bold)$($PSStyle.Foreground.Blue)"
2
+$StyleOff="$($PSStyle.Reset)"
3
+Write-Host $StyleOn"---------- Reformating with black... ----------"$StyleOff
4
black .\ml_rest_fastapi .\tests
-Write-Host "---------- Analysing with pylint... -----------" -ForegroundColor Blue
5
+Write-Host $StyleOn"---------- Analysing with pylint... -----------"$StyleOff
6
pylint --recursive=y .\ml_rest_fastapi .\tests
-Write-Host "---------- Validating with mypy... ------------" -ForegroundColor Blue
7
+Write-Host $StyleOn"---------- Validating with mypy... ------------"$StyleOff
8
mypy --pretty --config-file=mypy.ini .\ml_rest_fastapi
0 commit comments