qiu8310/ylog

View on GitHub
src/core.js

Summary

Maintainability
F
3 days
Test Coverage

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 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 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

            There are no issues that match your filters.

            Category
            Status