development_enable_ai_domain #34
No reviewers
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_osis!34
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "development_enable_ai_domain"
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?
#33
- Add workspace + crate-level allow for clippy::doc_lazy_continuation (auto-generated client/server files use ASCII-art separators that trigger the lint; hand-fixing each file would just be wiped on regeneration). - Replace map_or(true, ..) with is_none_or; manual range checks with RangeInclusive::contains; collapse else { if .. }; switch to matches!; drop clone() on Copy types; use or_default() and Default struct initialization; reorder cloned() after skip/take to avoid eager clones. - Allow too_many_arguments on the run_generate CLI handler. After this, cargo clippy --workspace --lib --bins --tests is clean.