felipero/couchrails

View on GitHub

Showing 206 of 206 total issues

Function setOpacity has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
Open

  Element.Methods.setOpacity = function(element, value) {
    function stripAlpha(filter){
      return filter.replace(/alpha\([^\)]*\)/gi,'');
    }
    element = $(element);
Severity: Minor
Found in examples/helloworld/public/javascripts/prototype.js - 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

Function compileMatcher has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
Open

  compileMatcher: function() {
    var e = this.expression, ps = Selector.patterns, h = Selector.handlers,
        c = Selector.criteria, le, p, m, len = ps.length, name;

    if (Selector._cache[e]) {
Severity: Minor
Found in examples/helloworld/public/javascripts/prototype.js - 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

Function updateChoices has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
Open

  updateChoices: function(choices) {
    if(!this.changed && this.hasFocus) {
      this.update.innerHTML = choices;
      Element.cleanWhitespace(this.update);
      Element.cleanWhitespace(this.update.down());
Severity: Minor
Found in examples/helloworld/public/javascripts/controls.js - 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

Function request has 31 lines of code (exceeds 25 allowed). Consider refactoring.
Open

  request: function(url) {
    this.url = url;
    this.method = this.options.method;
    var params = Object.clone(this.options.parameters);

Severity: Minor
Found in examples/helloworld/public/javascripts/prototype.js - About 1 hr to fix

    Function id has 31 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        id: function(nodes, root, id, combinator) {
          var targetNode = $(id), h = Selector.handlers;
    
          if (root == document) {
            if (!targetNode) return [];
    Severity: Minor
    Found in examples/helloworld/public/javascripts/prototype.js - About 1 hr to fix

      Function update has 30 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          function update(element, content) {
            element = $(element);
      
            if (content && content.toElement)
              content = content.toElement();
      Severity: Minor
      Found in examples/helloworld/public/javascripts/prototype.js - About 1 hr to fix

        Function updateDrag has 29 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

          updateDrag: function(event, pointer) {
            if(!this.dragging) this.startDrag(event);
        
            if(!this.options.quiet){
              Position.prepare();
        Severity: Minor
        Found in examples/helloworld/public/javascripts/dragdrop.js - About 1 hr to fix

          Similar blocks of code found in 2 locations. Consider refactoring.
          Open

          Form.Element.Observer = Class.create(Abstract.TimedObserver, {
            getValue: function() {
              return Form.Element.getValue(this.element);
            }
          });
          Severity: Major
          Found in examples/helloworld/public/javascripts/prototype.js and 1 other location - About 1 hr to fix
          examples/helloworld/public/javascripts/prototype.js on lines 4253..4257

          Duplicated Code

          Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

          Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

          When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

          Tuning

          This issue has a mass of 58.

          We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

          The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

          If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

          See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

          Refactorings

          Further Reading

          Similar blocks of code found in 2 locations. Consider refactoring.
          Open

          Form.Element.EventObserver = Class.create(Abstract.EventObserver, {
            getValue: function() {
              return Form.Element.getValue(this.element);
            }
          });
          Severity: Major
          Found in examples/helloworld/public/javascripts/prototype.js and 1 other location - About 1 hr to fix
          examples/helloworld/public/javascripts/prototype.js on lines 4200..4204

          Duplicated Code

          Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

          Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

          When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

          Tuning

          This issue has a mass of 58.

          We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

          The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

          If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

          See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

          Refactorings

          Further Reading

          Function nth has 28 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              nth: function(nodes, formula, root, reverse, ofType) {
                if (nodes.length == 0) return [];
                if (formula == 'even') formula = '2n+0';
                if (formula == 'odd')  formula = '2n+1';
                var h = Selector.handlers, results = [], indexed = [], m;
          Severity: Minor
          Found in examples/helloworld/public/javascripts/prototype.js - About 1 hr to fix

            Function scroll has 28 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

              scroll: function() {
                var current = new Date();
                var delta = current - this.lastScrolled;
                this.lastScrolled = current;
                if(this.options.scroll == window) {
            Severity: Minor
            Found in examples/helloworld/public/javascripts/dragdrop.js - About 1 hr to fix

              Function cumulativeOffset has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
              Open

                Element.Methods.cumulativeOffset = function(element) {
                  var valueT = 0, valueL = 0;
                  do {
                    valueT += element.offsetTop  || 0;
                    valueL += element.offsetLeft || 0;
              Severity: Minor
              Found in examples/helloworld/public/javascripts/prototype.js - 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

              Function readAttribute has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
              Open

                readAttribute: function(element, name) {
                  element = $(element);
                  if (Prototype.Browser.IE) {
                    var t = Element._attributeTranslations.read;
                    if (t.values[name]) return t.values[name](element, name);
              Severity: Minor
              Found in examples/helloworld/public/javascripts/prototype.js - 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

              Function nth has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
              Open

                    nth: function(fragment, m) {
                      var mm, formula = m[6], predicate;
                      if (formula == 'even') formula = '2n+0';
                      if (formula == 'odd')  formula = '2n+1';
                      if (mm = formula.match(/^(\d+)$/)) // digit only
              Severity: Minor
              Found in examples/helloworld/public/javascripts/prototype.js - 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

              Function updateElement has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
              Open

                updateElement: function(selectedElement) {
                  if (this.options.updateElement) {
                    this.options.updateElement(selectedElement);
                    return;
                  }
              Severity: Minor
              Found in examples/helloworld/public/javascripts/controls.js - 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

              Function scroll has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
              Open

                scroll: function() {
                  var current = new Date();
                  var delta = current - this.lastScrolled;
                  this.lastScrolled = current;
                  if(this.options.scroll == window) {
              Severity: Minor
              Found in examples/helloworld/public/javascripts/dragdrop.js - 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

              Function startDrag has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
              Open

                startDrag: function(event) {
                  this.dragging = true;
                  if(!this.delta)
                    this.delta = this.currentDelta();
              
              
              Severity: Minor
              Found in examples/helloworld/public/javascripts/dragdrop.js - 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

              Function replace has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
              Open

                Element.Methods.replace = function(element, content) {
                  element = $(element);
              
                  if (content && content.toElement) content = content.toElement();
                  if (Object.isElement(content)) {
              Severity: Minor
              Found in examples/helloworld/public/javascripts/prototype.js - 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

              Function clonePosition has 26 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                clonePosition: function(element, source) {
                  var options = Object.extend({
                    setLeft:    true,
                    setTop:     true,
                    setWidth:   true,
              Severity: Minor
              Found in examples/helloworld/public/javascripts/prototype.js - About 1 hr to fix

                Function startDrag has 26 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                  startDrag: function(event) {
                    this.dragging = true;
                    if(!this.delta)
                      this.delta = this.currentDelta();
                
                
                Severity: Minor
                Found in examples/helloworld/public/javascripts/dragdrop.js - About 1 hr to fix
                  Severity
                  Category
                  Status
                  Source
                  Language