linyows/trellohub

View on GitHub

Showing 11 of 11 total issues

Class Form has 30 methods (exceeds 20 allowed). Consider refactoring.
Open

  class Form
    module Card
      class << self
        def valid_attributes
          %i(
Severity: Minor
Found in lib/trellohub/form/card.rb - About 3 hrs to fix

    Method compare has a Cognitive Complexity of 23 (exceeds 5 allowed). Consider refactoring.
    Open

          def compare(base, comparison)
            return unless base.updated_at < comparison.updated_at
            type = base.imported_from
    
            printings = [[
    Severity: Minor
    Found in lib/trellohub/form.rb - About 3 hrs 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

    Class Form has 27 methods (exceeds 20 allowed). Consider refactoring.
    Open

      class Form
        module Issue
          class << self
            def valid_attributes
              %i(
    Severity: Minor
    Found in lib/trellohub/form/issue.rb - About 3 hrs to fix

      Method assign_card_list_by_issue has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
      Open

            def assign_card_list_by_issue
              list = nil
      
              Trellohub.list_custom_conditions.each do |cond|
                code = <<-CODE.gsub("\s", ' ')
      Severity: Minor
      Found in lib/trellohub/form/issue.rb - About 1 hr 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 build_issue_attributes_by_issue has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
      Open

            def build_issue_attributes_by_issue
              @origin_issue.attrs.keys.each do |key|
                next if key == :pull_request
      
                value = case key
      Severity: Minor
      Found in lib/trellohub/form/issue.rb - About 1 hr 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 compare has 28 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

            def compare(base, comparison)
              return unless base.updated_at < comparison.updated_at
              type = base.imported_from
      
              printings = [[
      Severity: Minor
      Found in lib/trellohub/form.rb - About 1 hr to fix

        Method find_by has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
        Open

              def find_by(id: nil, username: nil)
                @members = {} if @members.nil?
        
                case
                when !id.nil?
        Severity: Minor
        Found in lib/trellohub/member.rb - About 1 hr 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 to_valid_issue has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
        Open

              def to_valid_issue
                Hash[Trellohub::Form::Issue.valid_attributes.map { |key|
                  value = instance_variable_get(:"@issue_#{key}")
        
                  case
        Severity: Minor
        Found in lib/trellohub/form/issue.rb - About 1 hr 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 build_issue_attributes_by_card has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
        Open

              def build_issue_attributes_by_card
                @issue_title = card_name_without_prefix
                @issue_state = @state = @origin_card.closed ? 'closed' : 'open'
        
                if @origin_card.desc =~ key_matcher
        Severity: Minor
        Found in lib/trellohub/form/card.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 build_card_attributes_by_card has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Open

              def build_card_attributes_by_card
                list = Trellohub::List.find_by(id: @origin_card.idList)
                @card_list_name = list.name if list
        
                @card_members = @origin_card.idMembers.map { |member_id|
        Severity: Minor
        Found in lib/trellohub/form/card.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 print_with_vertical_line has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Open

          def print_with_vertical_line(title: nil, header: true)
            max = self.max_lengths
        
            self.each.with_index(1) do |line, index|
              puts "[#{title}]" if title && index == 1
        Severity: Minor
        Found in lib/trellohub/core_ext/array.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