CCText/scripts/RunLint.ps1

10 lines
191 B
PowerShell
Raw Normal View History

2024-04-10 20:54:12 +03:00
# Run lint
function RunLinters() {
$pylint = "$PSScriptRoot\..\venv\Scripts\pylint.exe"
$mypy = "$PSScriptRoot\..\venv\Scripts\mypy.exe"
& $pylint cctext
& $mypy cctext
}
RunLinters