lukasmartinelli/ghrr

View on GitHub

Showing 4 of 4 total issues

Function EventTypeList has 69 lines of code (exceeds 25 allowed). Consider refactoring.
Open

var EventTypeList = function() {
    var types = [
         { name: 'pushevent', label: 'push', color: '#1f77b4', plottable: true },
         { name: 'issuecommentevent', label: 'issue comment',
           color: '#ff7f0e', plottable: true},
Severity: Major
Found in public/list.js - About 2 hrs to fix

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

    module.exports = function(accessToken) {
        var options = {
            url: 'https://api.github.com/events',
            headers: {
                'User-Agent': 'GHHR',
    Severity: Minor
    Found in github.js - About 1 hr to fix

      Function EventType has 27 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          var EventType = function(name, label, plottable, color) {
              this.name = name;
              this.label = label;
              this.count = 0;
              this.allCount = ko.observable(0);
      Severity: Minor
      Found in public/list.js - About 1 hr to fix

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

        var EventTypeList = function() {
            var types = [
                 { name: 'pushevent', label: 'push', color: '#1f77b4', plottable: true },
                 { name: 'issuecommentevent', label: 'issue comment',
                   color: '#ff7f0e', plottable: true},
        Severity: Minor
        Found in public/list.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