ioquatix/financier

View on GitHub

Showing 280 of 590 total issues

Function matcherFromTokens has 48 lines of code (exceeds 25 allowed). Consider refactoring.
Open

function matcherFromTokens( tokens ) {
    var checkContext, matcher, j,
        len = tokens.length,
        leadingRelative = Expr.relative[ tokens[ 0 ].type ],
        implicitRelative = leadingRelative || Expr.relative[ " " ],
Severity: Minor
Found in public/_components/jquery/jquery.slim.js - About 1 hr to fix

    Function select has 48 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    select = Sizzle.select = function( selector, context, results, seed ) {
        var i, tokens, token, type, find,
            compiled = typeof selector === "function" && selector,
            match = !seed && tokenize( ( selector = compiled.selector || selector ) );
    
    
    Severity: Minor
    Found in public/_components/jquery/jquery.slim.js - About 1 hr to fix

      Function createGridAndLabels has 48 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

        function createGridAndLabels(gridGroup, labelGroup, useForeignObject, chartOptions, eventEmitter) {
          var axisOptions = chartOptions['axis' + this.units.pos.toUpperCase()];
          var projectedValues = this.ticks.map(this.projectValue.bind(this));
          var labelValues = this.ticks.map(axisOptions.labelInterpolationFnc);
      
      
      Severity: Minor
      Found in public/_components/chartist/chartist.js - About 1 hr to fix

        Function addCombinator has 47 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

        function addCombinator( matcher, combinator, base ) {
            var dir = combinator.dir,
                skip = combinator.next,
                key = skip || dir,
                checkNonElements = base && key === "parentNode",
        Severity: Minor
        Found in public/_components/jquery/jquery.js - About 1 hr to fix

          Function addCombinator has 47 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

          function addCombinator( matcher, combinator, base ) {
              var dir = combinator.dir,
                  skip = combinator.next,
                  key = skip || dir,
                  checkNonElements = base && key === "parentNode",
          Severity: Minor
          Found in public/_components/jquery/jquery.slim.js - About 1 hr to fix

            Function tokenize has 46 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

            tokenize = Sizzle.tokenize = function( selector, parseOnly ) {
                var matched, match, tokens, type,
                    soFar, groups, preFilters,
                    cached = tokenCache[ selector + " " ];
            
            
            Severity: Minor
            Found in public/_components/jquery/jquery.js - About 1 hr to fix

              Function tokenize has 46 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

              tokenize = Sizzle.tokenize = function( selector, parseOnly ) {
                  var matched, match, tokens, type,
                      soFar, groups, preFilters,
                      cached = tokenCache[ selector + " " ];
              
              
              Severity: Minor
              Found in public/_components/jquery/jquery.slim.js - About 1 hr to fix

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

                    val: function( value ) {
                        var hooks, ret, valueIsFunction,
                            elem = this[ 0 ];
                
                        if ( !arguments.length ) {
                Severity: Minor
                Found in public/_components/jquery/jquery.js - About 1 hr to fix

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

                      val: function( value ) {
                          var hooks, ret, valueIsFunction,
                              elem = this[ 0 ];
                  
                          if ( !arguments.length ) {
                  Severity: Minor
                  Found in public/_components/jquery/jquery.slim.js - About 1 hr to fix

                    Function leverageNative has 44 lines of code (exceeds 25 allowed). Consider refactoring.
                    Open

                    function leverageNative( el, type, expectSync ) {
                    
                        // Missing expectSync indicates a trigger call, which must force setup through jQuery.event.add
                        if ( !expectSync ) {
                            if ( dataPriv.get( el, type ) === undefined ) {
                    Severity: Minor
                    Found in public/_components/jquery/jquery.js - About 1 hr to fix

                      Function data has 44 lines of code (exceeds 25 allowed). Consider refactoring.
                      Open

                          data: function( key, value ) {
                              var i, name, data,
                                  elem = this[ 0 ],
                                  attrs = elem && elem.attributes;
                      
                      
                      Severity: Minor
                      Found in public/_components/jquery/jquery.js - About 1 hr to fix

                        Function leverageNative has 44 lines of code (exceeds 25 allowed). Consider refactoring.
                        Open

                        function leverageNative( el, type, expectSync ) {
                        
                            // Missing expectSync indicates a trigger call, which must force setup through jQuery.event.add
                            if ( !expectSync ) {
                                if ( dataPriv.get( el, type ) === undefined ) {
                        Severity: Minor
                        Found in public/_components/jquery/jquery.slim.js - About 1 hr to fix

                          Function data has 44 lines of code (exceeds 25 allowed). Consider refactoring.
                          Open

                              data: function( key, value ) {
                                  var i, name, data,
                                      elem = this[ 0 ],
                                      attrs = elem && elem.attributes;
                          
                          
                          Severity: Minor
                          Found in public/_components/jquery/jquery.slim.js - About 1 hr to fix

                            Function getHighLow has 44 lines of code (exceeds 25 allowed). Consider refactoring.
                            Open

                              Chartist.getHighLow = function (data, options, dimension) {
                                // TODO: Remove workaround for deprecated global high / low config. Axis high / low configuration is preferred
                                options = Chartist.extend({}, options, dimension ? options['axis' + dimension.toUpperCase()] : {});
                            
                                var highLow = {
                            Severity: Minor
                            Found in public/_components/chartist/chartist.js - About 1 hr to fix

                              Function extend has 43 lines of code (exceeds 25 allowed). Consider refactoring.
                              Open

                              jQuery.extend = jQuery.fn.extend = function() {
                                  var options, name, src, copy, copyIsArray, clone,
                                      target = arguments[ 0 ] || {},
                                      i = 1,
                                      length = arguments.length,
                              Severity: Minor
                              Found in public/_components/jquery/jquery.slim.js - About 1 hr to fix

                                Function extend has 43 lines of code (exceeds 25 allowed). Consider refactoring.
                                Open

                                jQuery.extend = jQuery.fn.extend = function() {
                                    var options, name, src, copy, copyIsArray, clone,
                                        target = arguments[ 0 ] || {},
                                        i = 1,
                                        length = arguments.length,
                                Severity: Minor
                                Found in public/_components/jquery/jquery.js - About 1 hr to fix

                                  Function optionsProvider has 43 lines of code (exceeds 25 allowed). Consider refactoring.
                                  Open

                                    Chartist.optionsProvider = function (options, responsiveOptions, eventEmitter) {
                                      var baseOptions = Chartist.extend({}, options),
                                        currentOptions,
                                        mediaQueryListeners = [],
                                        i;
                                  Severity: Minor
                                  Found in public/_components/chartist/chartist.js - About 1 hr to fix

                                    Function style has 41 lines of code (exceeds 25 allowed). Consider refactoring.
                                    Open

                                        style: function( elem, name, value, extra ) {
                                    
                                            // Don't set styles on text and comment nodes
                                            if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) {
                                                return;
                                    Severity: Minor
                                    Found in public/_components/jquery/jquery.js - About 1 hr to fix

                                      Function access has 41 lines of code (exceeds 25 allowed). Consider refactoring.
                                      Open

                                      var access = function( elems, fn, key, value, chainable, emptyGet, raw ) {
                                          var i = 0,
                                              len = elems.length,
                                              bulk = key == null;
                                      
                                      
                                      Severity: Minor
                                      Found in public/_components/jquery/jquery.js - About 1 hr to fix

                                        Function adjustCSS has 41 lines of code (exceeds 25 allowed). Consider refactoring.
                                        Open

                                        function adjustCSS( elem, prop, valueParts, tween ) {
                                            var adjusted, scale,
                                                maxIterations = 20,
                                                currentValue = tween ?
                                                    function() {
                                        Severity: Minor
                                        Found in public/_components/jquery/jquery.js - About 1 hr to fix
                                          Severity
                                          Category
                                          Status
                                          Source
                                          Language