Showing 316 of 336 total issues

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

    def add_multiple_attribute(tag_name, id, attribute_name, parts, content)
      case attribute_name
        when 'checked', 'value'
          if parts.size > 1
            if tag_name == 'textarea'
Severity: Minor
Found in lib/volt/server/html_parser/attribute_scope.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 assign_all_attributes has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
Open

    def assign_all_attributes(attrs, track_changes = false)
      # Assign each attribute using setters
      attrs.each_pair do |key, value|
        key = key.to_sym

Severity: Minor
Found in lib/volt/models/model.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 css has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
Open

    def css
      css_files = []
      @assets.each do |type, path|
        case type
          when :folder
Severity: Minor
Found in lib/volt/server/rack/asset_files.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

Avoid too many return statements within this function.
Open

            return ret;
Severity: Major
Found in app/volt/assets/js/jquery-2.0.3.js - About 30 mins to fix

    Avoid too many return statements within this function.
    Open

                return compare & 4 ? -1 : 1;
    Severity: Major
    Found in app/volt/assets/js/jquery-2.0.3.js - About 30 mins to fix

      Avoid too many return statements within this function.
      Open

                      return results;
      Severity: Major
      Found in app/volt/assets/js/jquery-2.0.3.js - About 30 mins to fix

        Avoid too many return statements within this function.
        Open

                return jQuery.makeArray( selector, this );
        Severity: Major
        Found in app/volt/assets/js/jquery-2.0.3.js - About 30 mins to fix

          Avoid too many return statements within this function.
          Open

                      return ret == null ?
                          undefined :
                          ret;
          Severity: Major
          Found in app/volt/assets/js/jquery-2.0.3.js - About 30 mins to fix

            Avoid too many return statements within this function.
            Open

                            return this.constructor( context ).find( selector );
            Severity: Major
            Found in app/volt/assets/js/jquery-2.0.3.js - About 30 mins to fix

              Avoid too many return statements within this function.
              Open

                          return this;
              Severity: Major
              Found in app/volt/assets/js/jquery-2.0.3.js - About 30 mins to fix

                Avoid too many return statements within this function.
                Open

                                return results;
                Severity: Major
                Found in app/volt/assets/js/jquery-2.0.3.js - About 30 mins to fix

                  Avoid too many return statements within this function.
                  Open

                                      return results;
                  Severity: Major
                  Found in app/volt/assets/js/jquery-2.0.3.js - About 30 mins to fix

                    Avoid too many return statements within this function.
                    Open

                            return a.compareDocumentPosition ? -1 : 1;
                    Severity: Major
                    Found in app/volt/assets/js/jquery-2.0.3.js - About 30 mins to fix

                      Avoid too many return statements within this function.
                      Open

                          return select( selector.replace( rtrim, "$1" ), context, results, seed );
                      Severity: Major
                      Found in app/volt/assets/js/jquery-2.0.3.js - About 30 mins to fix

                        Avoid too many return statements within this function.
                        Open

                                                return results;
                        Severity: Major
                        Found in app/volt/assets/js/jquery-2.0.3.js - About 30 mins to fix

                          Avoid too many return statements within this function.
                          Open

                                      return rootjQuery.ready( selector );
                          Severity: Major
                          Found in app/volt/assets/js/jquery-2.0.3.js - About 30 mins to fix

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

                                def self.get_controller_and_action(controller_path)
                                  fail "Invalid controller path: #{controller_path.inspect}" unless controller_path && controller_path.size > 0
                            
                                  action = controller_path[-1]
                            
                            
                            Severity: Minor
                            Found in lib/volt/page/bindings/view_binding/controller_handler.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 set_content_to_template has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                            Open

                                def set_content_to_template(volt_app, template_name)
                                  if self.is_a?(DomSection)
                                    # DomTemplates are an optimization when working with the DOM (as opposed to other targets)
                                    dom_template = (@@template_cache[template_name] ||= DomTemplate.new(volt_app, template_name))
                            
                            
                            Severity: Minor
                            Found in lib/volt/page/targets/base_section.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 update has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                            Open

                                def update(value)
                                  # Since we're checking things like size, we don't want this to be re-triggered on a
                                  # size change, so we run without tracking.
                                  Computation.run_without_tracking do
                                    # Adjust to the new size
                            Severity: Minor
                            Found in lib/volt/page/bindings/each_binding.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 method_missing has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                            Open

                                def method_missing(method_name, *args, &block)
                                  method_name = method_name.to_sym
                                  if @locals && @locals.key?(method_name)
                                    obj = @locals[method_name]
                            
                            
                            Severity: Minor
                            Found in lib/volt/page/sub_context.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