From 6c3fb81e10c05a8640c8f8cf4d2b3294a2774010 Mon Sep 17 00:00:00 2001 From: Nathan McDougall Date: Wed, 17 Dec 2025 08:21:18 +1300 Subject: [PATCH] Use quoted `@echo` calls consistently in `justfile` This is a follow-up to enabling Powershell support, to prevent hanging/waiting for user input: ``` cmdlet Write-Output at command pipeline position 1 Supply values for the following parameters: InputObject[0]: ``` --- justfile | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/justfile b/justfile index b0db10a3..2e4a93a4 100644 --- a/justfile +++ b/justfile @@ -75,13 +75,13 @@ update-snapshots: [working-directory: 'rust'] format-rust: @cargo fmt - @echo Formatted Rust code. + @echo 'Formatted Rust code.' # Format the Python code. [group('formatting')] format-python: @uv run ruff format - @echo Formatted Python code. + @echo 'Formatted Python code.' # Format all code. [group('formatting')] @@ -92,13 +92,13 @@ format: # Lint Python code. [group('linting')] lint-python: - @echo Running ruff format... + @echo 'Running ruff format...' @uv run ruff format --check - @echo Running ruff check... + @echo 'Running ruff check...' @uv run ruff check - @echo Running mypy... + @echo 'Running mypy...' @uv run mypy src/grimp tests - @echo Running Import Linter... + @echo 'Running Import Linter...' @uv run lint-imports # Lint Rust code using cargo fmt and clippy @@ -122,11 +122,11 @@ autofix-python: # Run linters. [group('linting')] lint: - @echo Linting Python... + @echo 'Linting Python...' @just lint-python - @echo Linting Rust... + @echo 'Linting Rust...' @just lint-rust - @echo + @echo '' @echo '👍 {{GREEN}} Linting all good.{{NORMAL}}' # Build docs.