lyfeyaj/poplar

View on GitHub

Showing 53 of 53 total issues

Function convert has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
Open

Dynamic.convert = function(val, toType, ctx) {
  if (Array.isArray(toType)) {
    if (!Array.isArray(val)) {
      if (val === undefined || val === '') {
        val = [];
Severity: Minor
Found in lib/dynamic.js - 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

Function coerceAccepts has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
Open

function coerceAccepts(uarg, desc) {
  var name = desc.name || desc.arg;
  var targetType = convertToBasicType(desc.type);
  var targetTypeIsArray = _.isArray(targetType) && targetType.length === 1;

Severity: Minor
Found in lib/api_method.js - 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

Function add has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
Open

Entity.prototype.add = function() {
  // ...names, options, fn

  var message = '\'%s\' is not a valid string';
  var self = this;
Severity: Minor
Found in lib/entity.js - 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

Function ApiMethod has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
Open

function ApiMethod(name, options, fn) {

  this.__original = [name, options, fn];

  this.fn = fn;
Severity: Minor
Found in lib/api_method.js - 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

  if (isint.test(str) && str.charAt(0) !== '0') return parseInt(str, 10);
Severity: Major
Found in lib/contexts/http.js - About 30 mins to fix

    Avoid too many return statements within this function.
    Open

          return callback(err);
    Severity: Major
    Found in lib/api_method.js - About 30 mins to fix

      Avoid too many return statements within this function.
      Open

            return cb(e);
      Severity: Major
      Found in lib/api_method.js - About 30 mins to fix

        Avoid too many return statements within this function.
        Open

          return str;
        Severity: Major
        Found in lib/contexts/http.js - About 30 mins to fix

          Avoid too many return statements within this function.
          Open

                return 'object';
          Severity: Major
          Found in lib/api_method.js - About 30 mins to fix

            Avoid too many return statements within this function.
            Open

              return uarg;
            Severity: Major
            Found in lib/api_method.js - About 30 mins to fix

              Avoid too many return statements within this function.
              Open

                if (isfloat.test(str)) return parseFloat(str, 10);
              Severity: Major
              Found in lib/contexts/http.js - About 30 mins to fix

                Function coerce has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                Open

                function coerce(str) {
                  if (typeof str !== 'string') return str;
                  if ('null' === str) return null;
                  if ('true' === str) return true;
                  if ('false' === str) return false;
                Severity: Minor
                Found in lib/contexts/http.js - 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

                Function toXML has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                Open

                function toXML(input) {
                  var xml;
                  if (input && typeof input.toXML === 'function') {
                    xml = input.toXML();
                  } else {
                Severity: Minor
                Found in lib/contexts/http.js - 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