[clippy] hero_editor strict pre-merge gate has pre-existing debt #7
Labels
No labels
prio_critical
prio_low
type_bug
type_contact
type_issue
type_lead
type_question
type_story
type_task
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
lhumina_code/hero_editor#7
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
cargo clippy --workspace --all-targets -- -D warnings currently fails on development with 7+ errors. Pre-existing debt accumulated through refactors. crates/hero_editor_examples/examples/health.rs:14 calls health_raw which no longer exists on the SDK. crates/hero_editor_examples/examples/basic_usage.rs has unused imports/variable; example body never wired up to actual SDK calls. crates/hero_editor_ui/src/main.rs has unused import any, unused field content_dir, dead structs PathQuery/FileInfo/ApiResponse, dead function validate_path. make check test (the CI gate) still passes. Fix is mechanical: rename SDK call site, delete dead code, drop unused imports. Mirrors deferral pattern from hero_biz#22 and hero_foundry#28. Filed during D-05 ONNX cross-compile session 60.