kevinjalbert/git_statistics

View on GitHub

Showing 5 of 5 total issues

Method parse_options has 33 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    def parse_options
      OptionParser.new do |opt|
        opt.version = VERSION
        opt.on '-e', '--email', "Use author's email instead of name" do
          options.email = true
Severity: Minor
Found in lib/git_statistics.rb - About 1 hr to fix

    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

    Method collect has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

        def collect(options = {})
          branch_name = options[:branch] ? options[:branch] : CLI::DEFAULT_BRANCH
    
          walker = Rugged::Walker.new(repo)
          walker.push(repo.branches[branch_name].target)
    Severity: Minor
    Found in lib/git_statistics/collector.rb - About 25 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 valid_commit? has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

        def valid_commit?(commit, options)
          unless options[:time_since].nil?
            return false unless commit.author[:time] > DateTime.parse(options[:time_since].to_s).to_time
          end
    
    
    Severity: Minor
    Found in lib/git_statistics/collector.rb - About 25 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

    Severity
    Category
    Status
    Source
    Language