Cellarise/gulp-async-func-runner

View on GitHub

Showing 14 of 31 total issues

Function testTasks has 287 lines of code (exceeds 25 allowed). Consider refactoring.
Open

module.exports = function testTasks(gulp, context) {
  var mocha = require("gulp-mocha");
  var mkdirp = require("mkdirp");
  var gutil = require("gulp-util");
  var glob = require("glob");
Severity: Major
Found in tasks/test.js - About 1 day to fix

    Function coverageStats has a Cognitive Complexity of 51 (exceeds 5 allowed). Consider refactoring.
    Open

    module.exports = function coverageStats(logger) {
    
      var exports = {
    
        /**
    Severity: Minor
    Found in tasks/lib/coverageStats.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 testTasks has a Cognitive Complexity of 40 (exceeds 5 allowed). Consider refactoring.
    Open

    module.exports = function testTasks(gulp, context) {
      var mocha = require("gulp-mocha");
      var mkdirp = require("mkdirp");
      var gutil = require("gulp-util");
      var glob = require("glob");
    Severity: Minor
    Found in tasks/test.js - About 6 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 coverageStats has 104 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    module.exports = function coverageStats(logger) {
    
      var exports = {
    
        /**
    Severity: Major
    Found in tasks/lib/coverageStats.js - About 4 hrs to fix

      Function testWriteCoverage has 97 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

        gulp.task("write_coverage", function testWriteCoverage() {
          var cwd = context.cwd;
          var pkg = context.package;
          var directories = pkg.directories;
          var outputDir = path.join(cwd, directories.reports, "code-coverage");
      Severity: Major
      Found in tasks/test.js - About 3 hrs to fix

        File test.js has 290 lines of code (exceeds 250 allowed). Consider refactoring.
        Open

        "use strict";
        /**
         * A module to add gulp tasks which run test steps.
         * @exports tasks/testTasks
         * @param {Gulp} gulp - The gulp module
        Severity: Minor
        Found in tasks/test.js - About 2 hrs to fix

          Function test has 67 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

            var test = function test(reporter, outputCoverageReports) {
              var cwd = context.cwd;
              var pkg = context.package;
              var directories = pkg.directories;
              var sourceGlobStr = directories.lib + "/**/*.js";
          Severity: Major
          Found in tasks/test.js - About 2 hrs to fix

            Function asyncFunc has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring.
            Open

            module.exports = function asyncFunc(opts, task, done) {
              var processed = false; //flag to ensure only onetime run
              //check options
              opts = opts || {};
              if (typeof opts.oneTimeRun === 'undefined') { opts.oneTimeRun = false; }
            Severity: Minor
            Found in lib/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

            Function calculateCoverageStats has 52 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                "calculateCoverageStats": function calculateCoverageStats(coverageReport, packageJSON) {
                  var coverageStat = {
                    "lines": {"total": 0, "covered": 0, "skipped": 0},
                    "branches": {"total": 0, "covered": 0, "skipped": 0},
                    "statements": {"total": 0, "covered": 0, "skipped": 0},
            Severity: Major
            Found in tasks/lib/coverageStats.js - About 2 hrs to fix

              Consider simplifying this complex logical expression.
              Open

                    if (coverageReport && packageJSON) {
                      for (coveredFile in coverageReport) {
                        if (coverageReport.hasOwnProperty(coveredFile)) {
                          this.addStats(coverageStat, coverageReport[coveredFile]);
                        }
              Severity: Critical
              Found in tasks/lib/coverageStats.js - About 2 hrs to fix

                Function asyncFunc has 29 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                module.exports = function asyncFunc(opts, task, done) {
                  var processed = false; //flag to ensure only onetime run
                  //check options
                  opts = opts || {};
                  if (typeof opts.oneTimeRun === 'undefined') { opts.oneTimeRun = false; }
                Severity: Minor
                Found in lib/index.js - About 1 hr to fix

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

                  module.exports = function coverageStatsTasks(gulp, context) {
                    var jeditor = require("gulp-json-editor");
                    var gutil = require("gulp-util");
                    var logger = context.logger;
                    var fs = require("fs");
                  Severity: Minor
                  Found in tasks/coverageStats.js - About 1 hr to fix

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

                    module.exports = function coverageStatsTasks(gulp, context) {
                      var jeditor = require("gulp-json-editor");
                      var gutil = require("gulp-util");
                      var logger = context.logger;
                      var fs = require("fs");
                    Severity: Minor
                    Found in tasks/coverageStats.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 codeAnalysisTasks has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
                    Open

                    module.exports = function codeAnalysisTasks(gulp, context) {
                      var eslint = require("gulp-eslint");
                    
                      /**
                       * A gulp build task to execute static code analysis on the files at `package.json:directories.lib`.
                    Severity: Minor
                    Found in tasks/codeAnalysis.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