mirror of
https://github.com/IRBorisov/cctext.git
synced 2025-06-25 21:20:36 +03:00
10 lines
195 B
PowerShell
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 |