Skip to content

Commit 6300f6f

Browse files
hyperpolymathclaude
andcommitted
chore: standardise, Justfile, (rename,, fix, parse, errors,, remove, useless, commands), remove, just, from, .tool-versions
Batch Justfile audit: standardised naming (lowercase→Justfile), fixed parse errors, removed useless build-riscv from non-Rust repos, added missing assail recipe, and fixed code quality issues. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 1d5e2f0 commit 6300f6f

3 files changed

Lines changed: 15 additions & 328 deletions

File tree

.tool-versions

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@
55
# Primary runtime
66
deno 2.1.4
77

8-
# Build tools
9-
just 1.36.0
108
zig 0.13.0
119

1210
# Language runtimes

Justfile

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,18 @@ help:
384384
@echo ""
385385
@echo "For full list: just --list"
386386
387-
# [AUTO-GENERATED] Multi-arch / RISC-V target
388-
build-riscv:
389-
@echo "Building for RISC-V..."
390-
cross build --target riscv64gc-unknown-linux-gnu
387+
# Run Rust CLI benchmarks
388+
bench:
389+
@echo "Running benchmarks..."
390+
cd impl/rust-cli && cargo bench --bench shell_benchmarks
391+
@echo "✓ Benchmarks complete"
392+
393+
# Run all benchmarks (including legacy)
394+
bench-all:
395+
@echo "Running all benchmarks..."
396+
cd impl/rust-cli && cargo bench
397+
@echo "✓ All benchmarks complete"
398+
399+
# Run panic-attacker pre-commit scan
400+
assail:
401+
@command -v panic-attack >/dev/null 2>&1 && panic-attack assail . || echo "panic-attack not found — install from https://github.com/hyperpolymath/panic-attacker"

justfile

Lines changed: 0 additions & 322 deletions
This file was deleted.

0 commit comments

Comments
 (0)