eiriksm/commit-a-day

View on GitHub

Showing 9 of 9 total issues

Function init has 129 lines of code (exceeds 25 allowed). Consider refactoring.
Open

function init(config, initCallback) {
  var calledBack = false;
  function callback() {
    if (!calledBack) {
      initCallback.apply(initCallback, arguments);
Severity: Major
Found in index.js - About 5 hrs to fix

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

    module.exports = function(data, callback) {
      var config = require('..').config;
      var npm = config.npm || {};
    
      // @todo: When npm starts supporting CORS again...
    Severity: Major
    Found in plugins/dependencies.js - About 3 hrs to fix

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

        app.controller = function() {
          this.plugins = [];
          this.enabledPlugins = {};
          for (var prop in c.plugins) {
            if (c.plugins.hasOwnProperty(prop)) {
      Severity: Major
      Found in static/js/browser.js - About 3 hrs to fix

        Function nextRepo has 60 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

              var nextRepo = function(delta) {
                var repo = repos[delta];
                if (!repo) {
                  if (!pagingEnd) {
                    config.page = config.page || 1;
        Severity: Major
        Found in index.js - About 2 hrs to fix

          Function processRepo has 37 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

          module.exports = function processRepo(r, callback) {
            var config = require('..').config;
            var processNext = function() {
              // Move on.
              callback();
          Severity: Minor
          Found in lib/processing.js - About 1 hr to fix

            Function view has 33 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

              app.view = function(ctrl) {
                return m('div.content', [
                  m('div.choices', [
                    m('h3', 'Optionally disable some plugins'),
                    ctrl.plugins.map(function(n) {
            Severity: Minor
            Found in static/js/browser.js - About 1 hr to fix

              Function start has 31 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                  this.start = function() {
                    var user = this.username();
                    m.startComputation();
                    ctrl.loading = true;
                    ctrl.loadingText = ctrl.getLoadingText();
              Severity: Minor
              Found in static/js/browser.js - About 1 hr to fix

                Function init has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                Open

                function init(config, initCallback) {
                  var calledBack = false;
                  function callback() {
                    if (!calledBack) {
                      initCallback.apply(initCallback, arguments);
                Severity: Minor
                Found in index.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

                Function start has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                Open

                var start = function(opt) {
                  c.init(opt, function(err, res) {
                    if (err) {
                      log.e('Sorry! There was an error. The error was: %s', err.message.bold);
                      process.exit(0);
                Severity: Minor
                Found in bin/_commit_a_day.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

                Severity
                Category
                Status
                Source
                Language