espaco-guerra/js

View on GitHub

Showing 7 of 7 total issues

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

module.exports = function(grunt) {
  // Project configuration.
  grunt.initConfig({
    pkg: grunt.file.readJSON('package.json'),
    jshint: {
Severity: Major
Found in Gruntfile.js - About 4 hrs to fix

    Function newPainter has 36 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    var newPainter = function() {
      var newWorldPainter = function(world, canvas) {
        var context = canvas.getContext('2d');
        var canvasDimensions = [canvas.width, canvas.height];
    
    
    Severity: Minor
    Found in src/base.js - About 1 hr to fix

      Function newGame has 32 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      var newGame = function(aCanvas, animationFrame) {
        var canvas = aCanvas;
        var world = {};
        var socket;
        var painter = newPainter();
      Severity: Minor
      Found in src/base.js - About 1 hr to fix

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

          var newWorldPainter = function(world, canvas) {
            var context = canvas.getContext('2d');
            var canvasDimensions = [canvas.width, canvas.height];
        
            var drawBody = function(bodyName) {
        Severity: Minor
        Found in src/base.js - About 1 hr to fix

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

          var newPainter = function() {
            var newWorldPainter = function(world, canvas) {
              var context = canvas.getContext('2d');
              var canvasDimensions = [canvas.width, canvas.height];
          
          
          Severity: Minor
          Found in src/base.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 newGame has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
          Open

          var newGame = function(aCanvas, animationFrame) {
            var canvas = aCanvas;
            var world = {};
            var socket;
            var painter = newPainter();
          Severity: Minor
          Found in src/base.js - About 25 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 util has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
          Open

          $.espacoGuerra.util = (function() {
            var forceProtocol = function(desiredProtocol, uri) {
              var match = uri.match(/^([^:]+):\/\//);
              var protocol = match === null ? null : match[1];
              if(match === null) {
          Severity: Minor
          Found in src/app/util.js - About 25 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