themouette/fossil-core

View on GitHub

Showing 86 of 86 total issues

Function service has 85 lines of code (exceeds 25 allowed). Consider refactoring.
Open

var service = function (_, utils, Mixin, Observable) {
        
        var Service = Mixin.extend({
                expose: null,
                link: null,
Severity: Major
Found in fossil-core.js - About 3 hrs to fix

    Function service has 85 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    var service = function (_, utils, Mixin, Observable) {
            
            var Service = Mixin.extend({
                    expose: null,
                    link: null,
    Severity: Major
    Found in samples/fossil-core.js - About 3 hrs to fix

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

                  makeRequire: function (relMap, options) {
                      options = options || {};
      
                      function localRequire(deps, callback, errback) {
                          var id, map, requireMod;
      Severity: Major
      Found in samples/todo/app.js - About 3 hrs to fix

        Function services_canvas has 76 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

        var services_canvas = function ($, Service, utils, Region) {
                var Canvas = Service.extend({
                        selector: 'body',
                        canvas: null,
                        useDeep: true,
        Severity: Major
        Found in samples/fossil-core.js - About 3 hrs to fix

          Function services_canvas has 76 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

          var services_canvas = function ($, Service, utils, Region) {
                  var Canvas = Service.extend({
                          selector: 'body',
                          canvas: null,
                          useDeep: true,
          Severity: Major
          Found in fossil-core.js - About 3 hrs to fix

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

            module.exports = function(grunt) {
                var port = grunt.option('port') || 1337;
            
                // Project configuration.
                grunt.initConfig({
            Severity: Major
            Found in samples/todo/Gruntfile.js - About 2 hrs to fix

              Function mixin has 71 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

              var mixin = function (_, utils) {
                      
                      var specials = ['initialize'];
                      function isSpecialFunction(name) {
                          return -1 !== specials.indexOf(name);
              Severity: Major
              Found in samples/fossil-core.js - About 2 hrs to fix

                Function mixin has 71 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                var mixin = function (_, utils) {
                        
                        var specials = ['initialize'];
                        function isSpecialFunction(name) {
                            return -1 !== specials.indexOf(name);
                Severity: Major
                Found in fossil-core.js - About 2 hrs to fix

                  Function utils has 65 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                  var utils = function (_) {
                          
                          var messages = { invalid_src: 'Invalid source object.' };
                          function scalarOrArray(method) {
                              return function () {
                  Severity: Major
                  Found in fossil-core.js - About 2 hrs to fix

                    Function utils has 65 lines of code (exceeds 25 allowed). Consider refactoring.
                    Open

                    var utils = function (_) {
                            
                            var messages = { invalid_src: 'Invalid source object.' };
                            function scalarOrArray(method) {
                                return function () {
                    Severity: Major
                    Found in samples/fossil-core.js - About 2 hrs to fix

                      Function configure has 63 lines of code (exceeds 25 allowed). Consider refactoring.
                      Open

                                  configure: function (cfg) {
                                      //Make sure the baseUrl ends in a slash.
                                      if (cfg.baseUrl) {
                                          if (cfg.baseUrl.charAt(cfg.baseUrl.length - 1) !== '/') {
                                              cfg.baseUrl += '/';
                      Severity: Major
                      Found in samples/todo/app.js - About 2 hrs to fix

                        Function check has 62 lines of code (exceeds 25 allowed). Consider refactoring.
                        Open

                                    check: function () {
                                        if (!this.enabled || this.enabling) {
                                            return;
                                        }
                        
                        
                        Severity: Major
                        Found in samples/todo/app.js - About 2 hrs to fix

                          Identical blocks of code found in 3 locations. Consider refactoring.
                          Open

                          require.config({
                              baseUrl: './src',
                              paths: {
                                  'jquery': '../bower_components/jquery/jquery',
                                  'underscore': '../bower_components/underscore/underscore',
                          Severity: Major
                          Found in skeleton/src/config.js and 2 other locations - About 2 hrs to fix
                          samples/todo/app.js on lines 2056..2069
                          samples/todo/src/config.js on lines 1..14

                          Duplicated Code

                          Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                          Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                          When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                          Tuning

                          This issue has a mass of 84.

                          We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                          The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                          If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                          See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                          Refactorings

                          Further Reading

                          Identical blocks of code found in 3 locations. Consider refactoring.
                          Open

                          require.config({
                              baseUrl: './src',
                              paths: {
                                  'jquery': '../bower_components/jquery/jquery',
                                  'underscore': '../bower_components/underscore/underscore',
                          Severity: Major
                          Found in samples/todo/src/config.js and 2 other locations - About 2 hrs to fix
                          samples/todo/app.js on lines 2056..2069
                          skeleton/src/config.js on lines 1..14

                          Duplicated Code

                          Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                          Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                          When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                          Tuning

                          This issue has a mass of 84.

                          We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                          The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                          If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                          See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                          Refactorings

                          Further Reading

                          Identical blocks of code found in 3 locations. Consider refactoring.
                          Open

                          require.config({
                              baseUrl: './src',
                              paths: {
                                  'jquery': '../bower_components/jquery/jquery',
                                  'underscore': '../bower_components/underscore/underscore',
                          Severity: Major
                          Found in samples/todo/app.js and 2 other locations - About 2 hrs to fix
                          samples/todo/src/config.js on lines 1..14
                          skeleton/src/config.js on lines 1..14

                          Duplicated Code

                          Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                          Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                          When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                          Tuning

                          This issue has a mass of 84.

                          We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                          The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                          If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                          See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                          Refactorings

                          Further Reading

                          Function normalize has 59 lines of code (exceeds 25 allowed). Consider refactoring.
                          Open

                                  function normalize(name, baseName, applyMap) {
                                      var pkgName, pkgConfig, mapValue, nameParts, i, j, nameSegment,
                                          foundMap, foundI, foundStarMap, starI,
                                          baseParts = baseName && baseName.split('/'),
                                          normalizedBaseParts = baseParts,
                          Severity: Major
                          Found in samples/todo/app.js - About 2 hrs to fix

                            Function checkLoaded has 56 lines of code (exceeds 25 allowed). Consider refactoring.
                            Open

                                    function checkLoaded() {
                                        var map, modId, err, usingPathFallback,
                                            waitInterval = config.waitSeconds * 1000,
                                            //It is possible to disable the wait interval by using waitSeconds of 0.
                                            expired = waitInterval && (context.startTime + waitInterval) < new Date().getTime(),
                            Severity: Major
                            Found in samples/todo/app.js - About 2 hrs to fix

                              Function fossil has 17 arguments (exceeds 4 allowed). Consider refactoring.
                              Open

                              var fossil = function (deferred, utils, Mixin, Module, Service, ObservableBuffer, ViewStore, Observable, Startable, Deferrable, Session, Canvas, Routing, Events, Template, Underscore, Handlebars) {
                              Severity: Major
                              Found in samples/fossil-core.js - About 2 hrs to fix

                                Function fossil has 17 arguments (exceeds 4 allowed). Consider refactoring.
                                Open

                                var fossil = function (deferred, utils, Mixin, Module, Service, ObservableBuffer, ViewStore, Observable, Startable, Deferrable, Session, Canvas, Routing, Events, Template, Underscore, Handlebars) {
                                Severity: Major
                                Found in fossil-core.js - About 2 hrs to fix

                                  Function viewStore has 51 lines of code (exceeds 25 allowed). Consider refactoring.
                                  Open

                                  var viewStore = function (_, utils, Mixin) {
                                          var ViewStore = Mixin.extend({
                                                  factories: null,
                                                  views: null,
                                                  constructor: function () {
                                  Severity: Major
                                  Found in fossil-core.js - About 2 hrs to fix
                                    Severity
                                    Category
                                    Status
                                    Source
                                    Language