CCText/scripts/RunLint.ps1
2024-04-10 20:54:12 +03:00

10 lines
191 B
PowerShell

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