CCText/scripts/RunLint.ps1

10 lines
195 B
PowerShell
Raw Normal View History

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