adoyle-h/Ero.js

View on GitHub

Showing 5 of 5 total issues

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

module.exports = function(gulp, config, LL, args) {  // eslint-disable-line no-unused-vars
    gulp.task('release:doc', ['doc:api', 'clean:gh-pages'], function(done) {
        var command = '\
            cp -rp doc/api/ gh-pages && \
            cd gh-pages && \
Severity: Major
Found in gulpfile.js/tasks/release.js - About 1 day to fix

    Function BaseError has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
    Open

    function BaseError() {
        var self = this;
        var args = Array.prototype.slice.call(arguments);
        var message = self.message;
        var meta = {};
    Severity: Minor
    Found in src/base_error.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 BaseError has 44 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    function BaseError() {
        var self = this;
        var args = Array.prototype.slice.call(arguments);
        var message = self.message;
        var meta = {};
    Severity: Minor
    Found in src/base_error.js - About 1 hr to fix

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

      Ero.prototype.defineErrorClass = function(definition, name) {
          var ero = this;
          if (!ero.template) {
              throw new Error('The error template should be defined firstly!');
          }
      Severity: Minor
      Found in src/ero.js - About 1 hr to fix

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

        module.exports = function(gulp, config, LL, args) {  // eslint-disable-line no-unused-vars
            gulp.task('tasks', function() {
                var tasks = Object.keys(gulp.tasks);
                var map = {'Basics': []};
                var task, category, i, arr;
        Severity: Minor
        Found in gulpfile.js/tasks/tasks.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