netbe/Babelish

View on GitHub
lib/babelish/csv2base.rb

Summary

Maintainability
C
1 day
Test Coverage

Method convert has a Cognitive Complexity of 47 (exceeds 5 allowed). Consider refactoring.
Open

    def convert(name = @csv_filename)
      rowIndex     = 0
      excludedCols = []
      defaultCol   = 0

Severity: Minor
Found in lib/babelish/csv2base.rb - About 7 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

Method convert has 36 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    def convert(name = @csv_filename)
      rowIndex     = 0
      excludedCols = []
      defaultCol   = 0

Severity: Minor
Found in lib/babelish/csv2base.rb - About 1 hr to fix

    Method initialize has 26 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        def initialize(filename, langs, args = {})
          default_args = {
            :excluded_states => [],
            :state_column => nil,
            :keys_column => 0,
    Severity: Minor
    Found in lib/babelish/csv2base.rb - About 1 hr to fix

      Method keys has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
      Open

          def keys
            @languages.each do |lang|
              next unless lang
              return lang.content.keys unless lang.content.keys.empty?
            end
      Severity: Minor
      Found in lib/babelish/csv2base.rb - About 35 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 write_content has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
      Open

          def write_content
            info = "List of created files:\n"
            count = 0
            @languages.each do |language|
              next if language.nil?
      Severity: Minor
      Found in lib/babelish/csv2base.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

      There are no issues that match your filters.

      Category
      Status