kevinjalbert/git_statistics

View on GitHub
lib/git_statistics/commits.rb

Summary

Maintainability
A
1 hr
Test Coverage

Method calculate_statistics has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
Open

    def calculate_statistics(email, merge)
      # Identify authors and author type
      type = email ? :author_email : :author

      # Process the commits from file or memory
Severity: Minor
Found in lib/git_statistics/commits.rb - About 55 mins to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Method process_commits has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
Open

    def process_commits(type, merge)
      # Collect the stats from each commit
      each do |key, value|
        next if !merge && value[:merge]
        # If there are no changed files move to next commit
Severity: Minor
Found in lib/git_statistics/commits.rb - About 55 mins to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

There are no issues that match your filters.

Category
Status