preston/bittorious

View on GitHub

Showing 235 of 235 total issues

Function $get has 9 arguments (exceeds 4 allowed). Consider refactoring.
Open

       function($$rAF,   $rootScope,   $rootElement,   $document,   $$HashMap,
                $$animation,   $$AnimateRunner,   $templateRequest,   $$jqLite) {
Severity: Major
Found in lib/assets/bower_components/angular-animate/angular-animate.js - About 1 hr to fix

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

          var determineTranslationInstant = function (translationId, interpolateParams, interpolationId) {
    
            var result, table = $uses ? $translationTable[$uses] : $translationTable,
                Interpolator = defaultInterpolator;
    
    
    Severity: Minor
    Found in lib/assets/bower_components/angular-translate/angular-translate.js - About 1 hr to fix

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

          function equalArrays(array, other, equalFunc, customizer, isLoose, stackA, stackB) {
            var index = -1,
                arrLength = array.length,
                othLength = other.length;
      
      
      Severity: Minor
      Found in lib/assets/bower_components/lodash/lodash.js - About 1 hr to fix

        Function resource has 8 arguments (exceeds 4 allowed). Consider refactoring.
        Open

            BaseCreator.prototype.resource = function(current, $http, localHttpConfig, callHeaders, callParams, what, etag,operation) {
        Severity: Major
        Found in lib/assets/bower_components/restangular/dist/restangular.js - About 1 hr to fix

          Function resource has 8 arguments (exceeds 4 allowed). Consider refactoring.
          Open

              BaseCreator.prototype.resource = function(current, $http, localHttpConfig, callHeaders, callParams, what, etag,operation) {
          Severity: Major
          Found in lib/assets/bower_components/restangular/src/restangular.js - About 1 hr to fix

            Function createWrapper has 8 arguments (exceeds 4 allowed). Consider refactoring.
            Open

                function createWrapper(func, bitmask, thisArg, partials, holders, argPos, ary, arity) {
            Severity: Major
            Found in lib/assets/bower_components/lodash/lodash.js - About 1 hr to fix

              Consider simplifying this complex logical expression.
              Open

                      if (objCtor != othCtor &&
                          ('constructor' in object && 'constructor' in other) &&
                          !(typeof objCtor == 'function' && objCtor instanceof objCtor &&
                            typeof othCtor == 'function' && othCtor instanceof othCtor)) {
                        return false;
              Severity: Major
              Found in lib/assets/bower_components/lodash/lodash.js - About 1 hr to fix

                Similar blocks of code found in 2 locations. Consider refactoring.
                Open

                  this.statefulFilter = function (state) {
                    if (state === undefined) {
                      // getter
                      return statefulFilter;
                    } else {
                lib/assets/bower_components/angular-translate/angular-translate.js on lines 1204..1213

                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 53.

                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

                Similar blocks of code found in 2 locations. Consider refactoring.
                Open

                    function filter(collection, predicate, thisArg) {
                      var func = isArray(collection) ? arrayFilter : baseFilter;
                      predicate = getCallback(predicate, thisArg, 3);
                      return func(collection, predicate);
                    }
                Severity: Minor
                Found in lib/assets/bower_components/lodash/lodash.js and 1 other location - About 55 mins to fix
                lib/assets/bower_components/lodash/lodash.js on lines 6707..6711

                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 53.

                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

                Similar blocks of code found in 2 locations. Consider refactoring.
                Open

                  this.directivePriority = function (priority) {
                    if (priority === undefined) {
                      // getter
                      return directivePriority;
                    } else {
                lib/assets/bower_components/angular-translate/angular-translate.js on lines 1229..1238

                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 53.

                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

                Similar blocks of code found in 2 locations. Consider refactoring.
                Open

                    function map(collection, iteratee, thisArg) {
                      var func = isArray(collection) ? arrayMap : baseMap;
                      iteratee = getCallback(iteratee, thisArg, 3);
                      return func(collection, iteratee);
                    }
                Severity: Minor
                Found in lib/assets/bower_components/lodash/lodash.js and 1 other location - About 55 mins to fix
                lib/assets/bower_components/lodash/lodash.js on lines 6306..6310

                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 53.

                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 $get has 7 arguments (exceeds 4 allowed). Consider refactoring.
                Open

                       function($window,   $$jqLite,   $$AnimateRunner,   $timeout,
                                $document,   $sniffer,   $$rAFScheduler) {
                Severity: Major
                Found in lib/assets/bower_components/angular-animate/angular-animate.js - About 50 mins to fix

                  Function fullRequestInterceptor has 7 arguments (exceeds 4 allowed). Consider refactoring.
                  Open

                      config.fullRequestInterceptor = function(element, operation, path, url, headers, params, httpConfig) {
                  Severity: Major
                  Found in lib/assets/bower_components/restangular/src/restangular.js - About 50 mins to fix

                    Function $get has 7 arguments (exceeds 4 allowed). Consider refactoring.
                    Open

                          function($rootScope, $location, $routeParams, $q, $injector, $templateRequest, $sce) {
                    Severity: Major
                    Found in lib/assets/bower_components/angular-route/angular-route.js - About 50 mins to fix

                      Function defaultInterceptor has 7 arguments (exceeds 4 allowed). Consider refactoring.
                      Open

                          config.defaultInterceptor = function(element, operation, path, url, headers, params, httpConfig) {
                      Severity: Major
                      Found in lib/assets/bower_components/restangular/src/restangular.js - About 50 mins to fix

                        Function baseClone has 7 arguments (exceeds 4 allowed). Consider refactoring.
                        Open

                            function baseClone(value, isDeep, customizer, key, object, stackA, stackB) {
                        Severity: Major
                        Found in lib/assets/bower_components/lodash/lodash.js - About 50 mins to fix

                          Function equalArrays has 7 arguments (exceeds 4 allowed). Consider refactoring.
                          Open

                              function equalArrays(array, other, equalFunc, customizer, isLoose, stackA, stackB) {
                          Severity: Major
                          Found in lib/assets/bower_components/lodash/lodash.js - About 50 mins to fix

                            Function fullRequestInterceptor has 7 arguments (exceeds 4 allowed). Consider refactoring.
                            Open

                                config.fullRequestInterceptor = function(element, operation, path, url, headers, params, httpConfig) {
                            Severity: Major
                            Found in lib/assets/bower_components/restangular/dist/restangular.js - About 50 mins to fix

                              Function baseIsEqualDeep has 7 arguments (exceeds 4 allowed). Consider refactoring.
                              Open

                                  function baseIsEqualDeep(object, other, equalFunc, customizer, isLoose, stackA, stackB) {
                              Severity: Major
                              Found in lib/assets/bower_components/lodash/lodash.js - About 50 mins to fix

                                Function equalObjects has 7 arguments (exceeds 4 allowed). Consider refactoring.
                                Open

                                    function equalObjects(object, other, equalFunc, customizer, isLoose, stackA, stackB) {
                                Severity: Major
                                Found in lib/assets/bower_components/lodash/lodash.js - About 50 mins to fix
                                  Severity
                                  Category
                                  Status
                                  Source
                                  Language