qiu8310/ylog

View on GitHub

Showing 13 of 15 total issues

Function call has a Cognitive Complexity of 49 (exceeds 5 allowed). Consider refactoring.
Open

function call() {
  var flags = this.flags,
    options = this.options,
    ylog = this.ylog;

Severity: Minor
Found in src/core.js - About 7 hrs 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 call has 100 lines of code (exceeds 25 allowed). Consider refactoring.
Open

function call() {
  var flags = this.flags,
    options = this.options,
    ylog = this.ylog;

Severity: Major
Found in src/core.js - About 4 hrs to fix

    Function parseFlags has a Cognitive Complexity of 27 (exceeds 5 allowed). Consider refactoring.
    Open

    function parseFlags(flags, args, options) {
      var i, flag, len = flags.length, no;
      var result = {levels: [], styles: []};
      for (i = 0; i < len; i++) {
        flag = flags[i];
    Severity: Minor
    Found in src/core.js - About 3 hrs 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

    File core.js has 328 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    /*
     * ylog
     * https://github.com/qiu8310/ylog
     *
     * Copyright (c) 2015 Zhonglei Qiu
    Severity: Minor
    Found in src/core.js - About 3 hrs to fix

      Function setAttribute has a Cognitive Complexity of 18 (exceeds 5 allowed). Consider refactoring.
      Open

      function setAttribute(flag, args, options, batch) {
        var trans = transforms[flag];
        var val = args[0];
        switch (trans) {
          case Boolean:
      Severity: Minor
      Found in src/core.js - About 2 hrs 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 wraptext has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
      Open

        wraptext: function(width, text) {
          // notes to self:
          // grab 1st character or ansi code from string
          // if ansi code, add to array and save for later, strip from front of string
          // if character, add to array and increment counter, strip from front of string
      Severity: Minor
      Found in src/helper.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 parseFlags has 33 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      function parseFlags(flags, args, options) {
        var i, flag, len = flags.length, no;
        var result = {levels: [], styles: []};
        for (i = 0; i < len; i++) {
          flag = flags[i];
      Severity: Minor
      Found in src/core.js - About 1 hr to fix

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

        function setAttribute(flag, args, options, batch) {
          var trans = transforms[flag];
          var val = args[0];
          switch (trans) {
            case Boolean:
        Severity: Minor
        Found in src/core.js - About 1 hr to fix

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

            align: function(text, len, align, pad) {
              var fill, mid;
              pad = pad || ' ';
              len = len - chalk.stripColor(text).length;
              if (len > 0) {
          Severity: Minor
          Found in src/helper.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

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

          function enable(namespaces) {
          
            process.env.YLOG = namespaces;
          
            var split = (namespaces || '').split(/[\s,]+/);
          Severity: Minor
          Found in src/ns.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

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

          function makeYlog(namespace, enabled) {
            var cacheKey = namespace || 'default';
            if (cacheKey in ylogMap) { return ylogMap[cacheKey]; }
          
            // 没有指定 namespace 则表示默认使用 defaultYlog
          Severity: Minor
          Found in src/core.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

            return rtn;
          Severity: Major
          Found in src/core.js - About 30 mins to fix

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

            function enabled(namespace) {
              var i, len;
              for (i = 0, len = skips.length; i < len; i++) {
                if (skips[i].test(namespace)) { return false; }
              }
            Severity: Minor
            Found in src/ns.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