linyows/trellohub

View on GitHub
lib/trellohub/form/issue.rb

Summary

Maintainability
C
7 hrs
Test Coverage

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 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

    There are no issues that match your filters.

    Category
    Status