tombruijn/kotoba

View on GitHub

Showing 4 of 4 total issues

Class Prawn has 36 methods (exceeds 20 allowed). Consider refactoring.
Open

  class Prawn < Base
    include Kotoba::Formatting

    # Prawn document, is called to add content
    attr_reader :prawn
Severity: Minor
Found in lib/kramdown/converter/prawn.rb - About 4 hrs to fix

    Method to_h has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
    Open

        def to_h
          {}.tap do |hash|
            hash[:font] = font if font_available?
            hash[:size] = size
            hash[:color] = color unless color.empty?
    Severity: Minor
    Found in lib/kotoba/layout/styling.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_h has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
    Open

        def to_h
          hash = metadata.merge(:CreationDate => Time.now)
          hash[:Title] = title if title
          hash[:Author] = authors.join(", ") unless authors.empty?
          hash[:Subject] = subject if subject
    Severity: Minor
    Found in lib/kotoba/config.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 parse_and_add_content has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

      def parse_and_add_content(strings)
        strings.each_with_index do |string, index|
          if is_page_break? string
            start_new_page
          else
    Severity: Minor
    Found in lib/kotoba/export/document/content.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