Skip to content

Commit 31e1efc

Browse files
hyperpolymathclaude
andcommitted
chore: standardise, Justfile, (rename,, fix, parse, errors,, remove, useless, commands), fix, Ada, compilation, errors
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 54bb6df commit 31e1efc

2 files changed

Lines changed: 7 additions & 6 deletions

File tree

Justfile

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -459,11 +459,6 @@ uninstall-tn:
459459
sudo mandb 2>/dev/null || true
460460
@echo "✅ Uninstalled"
461461

462-
# [AUTO-GENERATED] Multi-arch / RISC-V target
463-
build-riscv:
464-
@echo "Building for RISC-V..."
465-
cross build --target riscv64gc-unknown-linux-gnu
466-
467462
# Run panic-attacker pre-commit scan
468463
assail:
469464
@command -v panic-attack >/dev/null 2>&1 && panic-attack assail . || echo "panic-attack not found — install from https://github.com/hyperpolymath/panic-attacker"

src/main.adb

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,19 @@ with Ada.Text_IO; use Ada.Text_IO;
1717
with Ada.Command_Line;
1818
with Ada.Environment_Variables;
1919
with Ada.Directories;
20-
-- ... [other imports]
20+
with Config;
21+
with Navigator;
22+
with Bookmarks;
23+
with Tree_Printer;
2124

2225
procedure Main is
2326
Cfg : Config.Configuration;
2427
Paths : Config.File_Paths;
2528
State : Navigator.Navigation_State;
2629
BM_Map : Bookmarks.Bookmark_Map;
30+
Export_Mode : Boolean := False;
31+
Export_Opts : Tree_Printer.Export_Options;
32+
Stats : Tree_Printer.Tree_Statistics;
2733

2834
-- CONFIGURATION: Sets up the standard paths for config and cache.
2935
procedure Initialize_Paths is

0 commit comments

Comments
 (0)