bbatsov/rubocop

View on GitHub
lib/rubocop/cops_documentation_generator.rb

Summary

Maintainability
C
1 day
Test Coverage

Class CopsDocumentationGenerator has 28 methods (exceeds 20 allowed). Consider refactoring.
Open

class CopsDocumentationGenerator # rubocop:disable Metrics/ClassLength
  include ::RuboCop::Cop::Documentation
  # This class will only generate documentation for cops that belong to one of
  # the departments given in the `departments` array. E.g. if we only wanted
  # documentation for Lint cops:
Severity: Minor
Found in lib/rubocop/cops_documentation_generator.rb - About 3 hrs to fix

    File cops_documentation_generator.rb has 267 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    require 'fileutils'
    
    # Class for generating documentation of all cops departments
    # @api private
    class CopsDocumentationGenerator # rubocop:disable Metrics/ClassLength
    Severity: Minor
    Found in lib/rubocop/cops_documentation_generator.rb - About 2 hrs to fix

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

        def properties(cop)
          header = [
            'Enabled by default', 'Safe', 'Supports autocorrection', 'Version Added',
            'Version Changed'
          ]
      Severity: Minor
      Found in lib/rubocop/cops_documentation_generator.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 format_table_value has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
      Open

        def format_table_value(val)
          value =
            case val
            when Array
              if val.empty?
      Severity: Minor
      Found in lib/rubocop/cops_documentation_generator.rb - About 45 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 cops_body has 6 arguments (exceeds 4 allowed). Consider refactoring.
      Open

        def cops_body(cop, description, examples_objects, safety_objects, see_objects, pars) # rubocop:disable Metrics/AbcSize, Metrics/ParameterLists
      Severity: Minor
      Found in lib/rubocop/cops_documentation_generator.rb - About 45 mins to fix

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

          def safety_object(safety_object_objects)
            safety_object_objects.each_with_object(h3('Safety').dup) do |safety_object, content|
              next if safety_object.text.blank?
        
              content << "\n" unless content.end_with?("\n\n")
        Severity: Minor
        Found in lib/rubocop/cops_documentation_generator.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 examples has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Open

          def examples(examples_object)
            examples_object.each_with_object(h3('Examples').dup) do |example, content|
              content << "\n" unless content.end_with?("\n\n")
              content << h4(example.name) unless example.name == ''
              content << code_example(example)
        Severity: Minor
        Found in lib/rubocop/cops_documentation_generator.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 references has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Open

          def references(cop, see_objects) # rubocop:disable Metrics/AbcSize
            cop_config = config.for_cop(cop)
            urls = RuboCop::Cop::MessageAnnotator.new(config, cop.name, cop_config, {}).urls
            return '' if urls.empty? && see_objects.empty?
        
        
        Severity: Minor
        Found in lib/rubocop/cops_documentation_generator.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