codenautas/exec-to-html

View on GitHub

Showing 7 of 7 total issues

Function run has 171 lines of code (exceeds 25 allowed). Consider refactoring.
Open

execToHtml.run = function run(commandLines, opts){
    if(!opts || !('echo' in opts)){
        return specialReject('execToHtml.run ERROR: option echo is mandatory');
    }
    if(!('buffering' in opts)) {
Severity: Major
Found in bin/exec-to-html.js - About 6 hrs to fix

    Function onLine has 140 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

            onLine:function(flush){
                return Promise.resolve().then(function() {
                    if(! execToHtml.extraCommandsLoaded) {
                        execToHtml.extraCommandsLoaded = true;
                        return execToHtml.addLocalCommands(execToHtml.commands);
    Severity: Major
    Found in bin/exec-to-html.js - About 5 hrs to fix

      Function streamer has 128 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

                      var streamer=function(resolve,reject){
                          var commandLine=commandLines[0];
                          commandLines=commandLines.slice(1);
                          var lineForEmit={origin:'unknown'}; // para que origin esté primero en la lista de propiedades
                          var commandInfo;
      Severity: Major
      Found in bin/exec-to-html.js - About 5 hrs to fix

        File exec-to-html.js has 273 lines of code (exceeds 250 allowed). Consider refactoring.
        Open

        "use strict";
        
        var execToHtml = {};
        
        var likeAr = require('like-ar');
        Severity: Minor
        Found in bin/exec-to-html.js - About 2 hrs to fix

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

          execToHtml.middleware = function execToHtmlMiddleware(opts){
              return function(req,res,next){
                  var actionName;
                  Promise.resolve().then(function(){
                      var params=req.path.split('/');
          Severity: Minor
          Found in bin/exec-to-html.js - About 1 hr to fix

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

            function startAction(){
                eid('status').textContent='starting';
                eid('result').textContent='';
                eid('result').className='res_partial';
                var lineCount=0;
            Severity: Minor
            Found in bin/exec-control.js - About 1 hr to fix

              Function run has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
              Open

              execToHtml.run = function run(commandLines, opts){
                  if(!opts || !('echo' in opts)){
                      return specialReject('execToHtml.run ERROR: option echo is mandatory');
                  }
                  if(!('buffering' in opts)) {
              Severity: Minor
              Found in bin/exec-to-html.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

              Severity
              Category
              Status
              Source
              Language