Fannon/semlog

View on GitHub

Showing 10 of 14 total issues

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

function AnchorJS(options) {
  'use strict';

  this.options = options || {};

Severity: Minor
Found in doc/assets/anchor.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 AnchorJS has 142 lines of code (exceeds 25 allowed). Consider refactoring.
Open

function AnchorJS(options) {
  'use strict';

  this.options = options || {};

Severity: Major
Found in doc/assets/anchor.js - About 5 hrs to fix

    Function exports has 86 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    module.exports = function(grunt) {
    
        // Show elapsed time at the end
        require('time-grunt')(grunt);
    
    
    Severity: Major
    Found in Gruntfile.js - About 3 hrs to fix

      Function add has 79 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

        this.add = function(selector) {
          var elements,
              elsWithIds,
              idList,
              elementID,
      Severity: Major
      Found in doc/assets/anchor.js - About 3 hrs to fix

        Function message has a Cognitive Complexity of 21 (exceeds 5 allowed). Consider refactoring.
        Open

        exports.message = function(msg, silent) {
        
            global.githubFannonSemlog.statistics.total += 1;
            if (msg && msg.indexOf && (msg.indexOf('[V]') >= 0 || msg.indexOf('[D]') >= 0)) {
                global.githubFannonSemlog.statistics.debug += 1;
        Severity: Minor
        Found in index.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

        File index.js has 258 lines of code (exceeds 250 allowed). Consider refactoring.
        Open

        /**
         * semlog
         * A semantic logger that colors and formats messages automatically according to the content
         *
         * @author Simon Heimler
        Severity: Minor
        Found in index.js - About 2 hrs to fix

          Function _addBaselineStyles has 40 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

            this._addBaselineStyles = function() {
              // We don't want to add global baseline styles if they've been added before.
              if (document.head.querySelector('style.anchorjs') !== null) {
                return;
              }
          Severity: Minor
          Found in doc/assets/anchor.js - About 1 hr to fix

            Function message has 35 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

            exports.message = function(msg, silent) {
            
                global.githubFannonSemlog.statistics.total += 1;
                if (msg && msg.indexOf && (msg.indexOf('[V]') >= 0 || msg.indexOf('[D]') >= 0)) {
                    global.githubFannonSemlog.statistics.debug += 1;
            Severity: Minor
            Found in index.js - About 1 hr to fix

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

              exports.byteSize = function(obj) {
              
                  var str = '';
              
                  if (typeof obj === 'object') {
              Severity: Minor
              Found in index.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 debug has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
              Open

              exports.debug = function(obj, silent) {
              
                  global.githubFannonSemlog.statistics.total += 1;
              
                  var config = global.githubFannonSemlog.config;
              Severity: Minor
              Found in index.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

              Severity
              Category
              Status
              Source
              Language