Skip to content

Commit

Permalink
chores: be more verbose while running checks
Browse files Browse the repository at this point in the history
  • Loading branch information
t-graf committed May 7, 2024
1 parent 8212b8e commit d08ce0e
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion RunChecks.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,21 @@
# Run quality checks
# ------------------

# 2023-12-24, T. Graf
# 2024-05-07, T. Graf

Write-Host "flake8 ..."
poetry run flake8

Write-Host "markdownlint ..."
npx -q markdownlint-cli *.md

Write-Host "isort ..."
poetry run isort .

Write-Host "mypy ..."
poetry run mypy .

Write-Host "Done."

# -----------------------------------
# -----------------------------------

0 comments on commit d08ce0e

Please sign in to comment.