ctran/annotate_models

View on GitHub

Showing 33 of 35 total issues

Method generate has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
Open

    def generate
      magic_comments_map, contents_without_magic_comments = Helpers.extract_magic_comments_from_array(routes_map)

      out = []

Severity: Minor
Found in lib/annotate/annotate_routes/header_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 remove_annotations has 28 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    def remove_annotations(options = {})
      parse_options(options)

      deannotated = []
      deannotated_klass = false
Severity: Minor
Found in lib/annotate/annotate_models.rb - About 1 hr to fix

    Method get_foreign_key_info has 27 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        def get_foreign_key_info(klass, options = {})
          fk_info = if options[:format_markdown]
                      "#\n# ### Foreign Keys\n#\n"
                    else
                      "#\n# Foreign Keys\n#\n"
    Severity: Minor
    Found in lib/annotate/annotate_models.rb - About 1 hr to fix

      Method get_model_class has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
      Open

          def get_model_class(file)
            model_path = file.gsub(/\.rb$/, '')
            model_dir.each { |dir| model_path = model_path.gsub(/^#{dir}/, '').gsub(/^\//, '') }
            begin
              get_loaded_model(model_path, file) || raise(BadModelFileError.new)
      Severity: Minor
      Found in lib/annotate/annotate_models.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 max_schema_info_width has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
      Open

          def max_schema_info_width(klass, options)
            cols = columns(klass, options)
      
            if with_comments?(klass, options)
              max_size = cols.map do |column|
      Severity: Minor
      Found in lib/annotate/annotate_models.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 format_default has 7 arguments (exceeds 4 allowed). Consider refactoring.
      Open

          def format_default(col_name, max_size, col_type, bare_type_allowance, simple_formatted_attrs, bare_max_attrs_length = 0, col_comment = nil)
      Severity: Major
      Found in lib/annotate/annotate_models.rb - About 50 mins to fix

        Method strip_on_removal has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
        Open

            def strip_on_removal(content, header_position)
              if header_position == :before
                content.shift while content.first == ''
              elsif header_position == :after
                content.pop while content.last == ''
        Severity: Minor
        Found in lib/annotate/annotate_routes.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 add_options_to_parser has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
        Open

            def add_options_to_parser(option_parser) # rubocop:disable Metrics/MethodLength, Metrics/AbcSize
              has_set_position = {}
        
              option_parser.banner = 'Usage: annotate [options] [model_file]*'
        
        
        Severity: Minor
        Found in lib/annotate/parser.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 do_annotations has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
        Open

            def do_annotations(options = {})
              parse_options(options)
        
              header = options[:format_markdown] ? PREFIX_MD.dup : PREFIX.dup
              version = ActiveRecord::Migrator.current_version rescue 0
        Severity: Minor
        Found in lib/annotate/annotate_models.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 remove_annotation_of_file has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
        Open

            def remove_annotation_of_file(file_name, options = {})
              if File.exist?(file_name)
                content = File.read(file_name)
                return false if content =~ /#{SKIP_ANNOTATION_PREFIX}.*\n/
        
        
        Severity: Minor
        Found in lib/annotate/annotate_models.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 retrieve_indexes_from_table has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Open

            def retrieve_indexes_from_table(klass)
              table_name = klass.table_name
              return [] unless table_name
        
              indexes = klass.connection.indexes(table_name)
        Severity: Minor
        Found in lib/annotate/annotate_models.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 get_index_info has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Open

            def get_index_info(klass, options = {})
              index_info = if options[:format_markdown]
                             "#\n# ### Indexes\n#\n"
                           else
                             "#\n# Indexes\n#\n"
        Severity: Minor
        Found in lib/annotate/annotate_models.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 classified_sort has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Open

            def classified_sort(cols)
              rest_cols = []
              timestamps = []
              associations = []
              id = nil
        Severity: Minor
        Found in lib/annotate/annotate_models.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