bbatsov/rubocop

View on GitHub

Showing 669 of 669 total issues

Method autocorrect_heredoc_argument has 5 arguments (exceeds 4 allowed). Consider refactoring.
Open

        def autocorrect_heredoc_argument(corrector, node, heredoc_branch, leave_branch, guard)
Severity: Minor
Found in lib/rubocop/cop/style/guard_clause.rb - About 35 mins to fix

    Method move_branch_inside_condition has 5 arguments (exceeds 4 allowed). Consider refactoring.
    Open

              def move_branch_inside_condition(corrector, branch, condition,
                                               assignment, column)
    Severity: Minor
    Found in lib/rubocop/cop/style/conditional_assignment.rb - About 35 mins to fix

      Method move_branch_inside_condition has 5 arguments (exceeds 4 allowed). Consider refactoring.
      Open

                def move_branch_inside_condition(corrector, branch, condition, assignment, column)
      Severity: Minor
      Found in lib/rubocop/cop/style/conditional_assignment.rb - About 35 mins to fix

        Method apply_autocorrect has 5 arguments (exceeds 4 allowed). Consider refactoring.
        Open

                def apply_autocorrect(corrector, node, rhs, operator, new_rhs)
        Severity: Minor
        Found in lib/rubocop/cop/style/self_assignment.rb - About 35 mins to fix

          Method preferred_method has 5 arguments (exceeds 4 allowed). Consider refactoring.
          Open

                  def preferred_method(operator, lhs, rhs, if_branch, else_branch)
          Severity: Minor
          Found in lib/rubocop/cop/style/min_max_comparison.rb - About 35 mins to fix

            Method initialize has 5 arguments (exceeds 4 allowed). Consider refactoring.
            Open

                      def initialize(def_node, send_node, referenced_lvars, forwardable_args, **config)
            Severity: Minor
            Found in lib/rubocop/cop/style/arguments_forwarding.rb - About 35 mins to fix

              Method autocorrect has 5 arguments (exceeds 4 allowed). Consider refactoring.
              Open

                      def autocorrect(corrector, node, sort_node, sorter, accessor)
              Severity: Minor
              Found in lib/rubocop/cop/style/redundant_sort.rb - About 35 mins to fix

                Method compact_offenses has 5 arguments (exceeds 4 allowed). Consider refactoring.
                Open

                        def compact_offenses(node, left, right, start_ok, end_ok)
                Severity: Minor
                Found in lib/rubocop/cop/layout/space_inside_array_literal_brackets.rb - About 35 mins to fix

                  Method check_right_brace has 5 arguments (exceeds 4 allowed). Consider refactoring.
                  Open

                          def check_right_brace(node, inner, left_brace, right_brace, single_line)
                  Severity: Minor
                  Found in lib/rubocop/cop/layout/space_inside_block_braces.rb - About 35 mins to fix

                    Method correct_key_value has 5 arguments (exceeds 4 allowed). Consider refactoring.
                    Open

                            def correct_key_value(corrector, delta, key, value, separator)
                    Severity: Minor
                    Found in lib/rubocop/cop/layout/hash_alignment.rb - About 35 mins to fix

                      Method inspect has 5 arguments (exceeds 4 allowed). Consider refactoring.
                      Open

                              def inspect(node, block_argument_node, condition_node, return_value_node, range)
                      Severity: Minor
                      Found in lib/rubocop/cop/style/map_compact_with_conditional_block.rb - About 35 mins to fix

                        Method check_space has 5 arguments (exceeds 4 allowed). Consider refactoring.
                        Open

                                def check_space(space_begin_pos, space_end_pos, range, msg, node = nil)
                        Severity: Minor
                        Found in lib/rubocop/cop/layout/space_around_block_parameters.rb - About 35 mins to fix

                          Method issue_offenses has 5 arguments (exceeds 4 allowed). Consider refactoring.
                          Open

                                  def issue_offenses(node, left, right, start_ok, end_ok)
                          Severity: Minor
                          Found in lib/rubocop/cop/layout/space_inside_array_literal_brackets.rb - About 35 mins to fix

                            Method autocorrect_line has 5 arguments (exceeds 4 allowed). Consider refactoring.
                            Open

                                    def autocorrect_line(corrector, line_begin_pos, expr, column_delta,
                                                         taboo_ranges)
                            Severity: Minor
                            Found in lib/rubocop/cop/correctors/alignment_corrector.rb - About 35 mins to fix

                              Method line_breaks has 5 arguments (exceeds 4 allowed). Consider refactoring.
                              Open

                                    def line_breaks(node, source, previous_line_num, base_line_num, node_index)
                              Severity: Minor
                              Found in lib/rubocop/cop/correctors/percent_literal_corrector.rb - About 35 mins to fix

                                Method empty_corrections has 5 arguments (exceeds 4 allowed). Consider refactoring.
                                Open

                                        def empty_corrections(processed_source, corrector, empty_config,
                                                              left_token, right_token)
                                Severity: Minor
                                Found in lib/rubocop/cop/correctors/space_corrector.rb - About 35 mins to fix

                                  Method wrap_contents has 5 arguments (exceeds 4 allowed). Consider refactoring.
                                  Open

                                        def wrap_contents(corrector, node, contents, char, delimiters)
                                  Severity: Minor
                                  Found in lib/rubocop/cop/correctors/percent_literal_corrector.rb - About 35 mins to fix

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

                                        def handle_exiting_options
                                          return unless Options::EXITING_OPTIONS.any? { |o| @options.key? o }
                                    
                                          run_command(:version) if @options[:version] || @options[:verbose_version]
                                          run_command(:show_cops) if @options[:show_cops]
                                    Severity: Minor
                                    Found in lib/rubocop/cli.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 check_empty_lines_special has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                                    Open

                                            def check_empty_lines_special(body, first_line, last_line)
                                              return unless body
                                    
                                              if namespace?(body, with_one_child: true)
                                                check_both(:no_empty_lines, first_line, last_line)
                                    Severity: Minor
                                    Found in lib/rubocop/cop/mixin/empty_lines_around_body.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 on_send has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                                    Open

                                            def on_send(node)
                                              return unless (parent = node.parent)
                                              return unless parent.send_type? && parent.method?(:expression)
                                              return unless parent.receiver.receiver
                                    
                                    
                                    Severity: Minor
                                    Found in lib/rubocop/cop/internal_affairs/location_expression.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

                                    Severity
                                    Category
                                    Status
                                    Source
                                    Language