CCText/scripts/RunLint.ps1
2024-04-12 13:07:50 +03:00

10 lines
195 B
PowerShell

# Run lint
function RunLinters() {
$pylint = "${PSScriptRoot}\..\venv\Scripts\pylint.exe"
$mypy = "${PSScriptRoot}\..\venv\Scripts\mypy.exe"
& $pylint cctext
& $mypy cctext
}
RunLinters