ConceptPortal-public/rsconcept/RunLint.ps1

8 lines
231 B
PowerShell
Raw Normal View History

# Run coverage analysis
Set-Location $PSScriptRoot\backend
$pylint = "$PSScriptRoot\backend\venv\Scripts\pylint.exe"
2023-08-17 21:23:54 +03:00
$mypy = "$PSScriptRoot\backend\venv\Scripts\mypy.exe"
2023-08-17 21:23:54 +03:00
& $pylint cctext project apps
& $mypy cctext project apps