lyfeyaj/poplar

View on GitHub

Showing 45 of 53 total issues

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