refactor: reduce cognitive complexity across 13 modules - #486
Merged
Merged
Conversation
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Resolves all 28 open SonarQube Cognitive Complexity issues (rule
rust:S3776) by decomposing oversized functions using the Extract Method pattern.Motivation
All 28 issues were CRITICAL severity on SonarCloud. Each function exceeded the maximum allowed cognitive complexity of 15.
Changes
src/update_check.rsshould_skip_update_check,fetch_latest_version,check_and_notifysrc/config.rscollect_agent_gitignore_entries,collect_target_gitignore_entriessrc/commands/status.rsvalidate_children_directory,collect_child_issuessrc/commands/doctor.rssrc/commands/skill.rssrc/main.rshandle_init,handle_apply,handle_cleansrc/linker.rssrc/mcp.rsresolve_config_content,write_or_report_configsrc/init.rssrc/skills/detect.rssrc/skills/suggest.rsformat_installed_statussrc/skills/update.rssrc/skills/install.rsVerification
cargo fmt --all -- --checkcargo clippy --all-targets --all-features -- -D warningscargo test --all-features(675 tests, 0 failures)make verify-all(includes JS build, docs build)Notes