chore: fix fmt command
Some checks failed
CI / Lint (bash) (push) Has been cancelled
CI / Lint (markdown) (push) Has been cancelled
CI / Lint (nickel) (push) Has been cancelled
CI / Lint (nushell) (push) Has been cancelled
CI / Lint (rust) (push) Has been cancelled
CI / Code Coverage (push) Has been cancelled
CI / Test (macos-latest) (push) Has been cancelled
CI / Test (ubuntu-latest) (push) Has been cancelled
CI / Test (windows-latest) (push) Has been cancelled
CI / Build (macos-latest) (push) Has been cancelled
CI / Build (ubuntu-latest) (push) Has been cancelled
CI / Build (windows-latest) (push) Has been cancelled
CI / Benchmark (push) Has been cancelled
CI / Security Audit (push) Has been cancelled
CI / License Compliance (push) Has been cancelled

This commit is contained in:
Jesús Pérez 2025-12-28 12:34:24 +00:00
parent 87de90afa9
commit 070e338c5c
Signed by: jesus
GPG Key ID: 9F243E355E0BC939

View File

@ -44,14 +44,14 @@ help:
[doc("Format code with cargo fmt")]
fmt:
@echo "=== Formatting code ==="
cargo fmt -p typedialog-core -p typedialog -p typedialog-tui -p typedialog-web -p typedialog-ai -p typedialog-prov-gen -p typedialog-ag-core -p typedialog-ag
cargo fmt --all
@echo "✓ Formatting complete"
# Check format without modifying
[doc("Check format without changes")]
fmt-check:
@echo "=== Checking format ==="
cargo fmt -p typedialog-core -p typedialog -p typedialog-tui -p typedialog-web -p typedialog-ai -p typedialog-prov-gen -p typedialog-ag-core -p typedialog-ag -- --check
cargo fmt --all -- --check
@echo "✓ Format check passed"
# === LINTING ===