lucydot/effmass

View on GitHub

Showing 213 of 291 total issues

Consider simplifying this complex logical expression.
Open

if (!jQuery.browser) {
  jQuery.uaMatch = function(ua) {
    ua = ua.toLowerCase();

    var match = /(chrome)[ \/]([\w.]+)/.exec(ua) ||
Severity: Critical
Found in docs/build/_static/doctools.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 docs/build/_static/jquery-3.5.1.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 docs/build/_static/jquery-3.5.1.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 docs/build/_static/jquery-3.5.1.js - About 1 hr to fix

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

              dispatch: function( nativeEvent ) {
          
                  var i, j, ret, matched, handleObj, handlerQueue,
                      args = new Array( arguments.length ),
          
          
          Severity: Minor
          Found in docs/build/_static/jquery-3.5.1.js - About 1 hr to fix

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

                stop: function( type, clearQueue, gotoEnd ) {
                    var stopQueue = function( hooks ) {
                        var stop = hooks.stop;
                        delete hooks.stop;
                        stop( gotoEnd );
            Severity: Minor
            Found in docs/build/_static/jquery-3.5.1.js - About 1 hr to fix

              Function toggleClass has 40 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                  toggleClass: function( value, stateVal ) {
                      var type = typeof value,
                          isValidValue = type === "string" || Array.isArray( value );
              
                      if ( typeof stateVal === "boolean" && isValidValue ) {
              Severity: Minor
              Found in docs/build/_static/jquery-3.5.1.js - About 1 hr to fix

                Function setOffset has 40 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                    setOffset: function( elem, options, i ) {
                        var curPosition, curLeft, curCSSTop, curTop, curOffset, curCSSLeft, calculatePosition,
                            position = jQuery.css( elem, "position" ),
                            curElem = jQuery( elem ),
                            props = {};
                Severity: Minor
                Found in docs/build/_static/jquery-3.5.1.js - About 1 hr to fix

                  Function on has 40 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                  function on( elem, types, selector, data, fn, one ) {
                      var origFn, type;
                  
                      // Types can be a map of types/handlers
                      if ( typeof types === "object" ) {
                  Severity: Minor
                  Found in docs/build/_static/jquery-3.5.1.js - About 1 hr to fix

                    Function generate_segments has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
                    Open

                    def generate_segments(Settings, Data, bk=None, truncate_dir_change=True):
                        """Generates a list of Segment objects.
                    
                        Args:
                            Settings (Settings): instance of the :class:`Settings` class.
                    Severity: Minor
                    Found in effmass/extrema.py - About 1 hr 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 initOnKeyListeners has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
                    Open

                      initOnKeyListeners: function() {
                        $(document).keydown(function(event) {
                          var activeElementType = document.activeElement.tagName;
                          // don't navigate when in search box, textarea, dropdown or button
                          if (activeElementType !== 'TEXTAREA' && activeElementType !== 'INPUT' && activeElementType !== 'SELECT'
                    Severity: Minor
                    Found in docs/build/_static/doctools.js - About 1 hr 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 template has 39 lines of code (exceeds 25 allowed). Consider refactoring.
                    Open

                      function template(text, settings, oldSettings) {
                        if (!settings && oldSettings) settings = oldSettings;
                        settings = defaults({}, settings, _.templateSettings);
                    
                        // Combine delimiters into one regular expression via alternation.
                    Severity: Minor
                    Found in docs/build/_static/underscore-1.12.0.js - About 1 hr to fix

                      Function highlight has 38 lines of code (exceeds 25 allowed). Consider refactoring.
                      Open

                        function highlight(node, addItems) {
                          if (node.nodeType === 3) {
                            var val = node.nodeValue;
                            var pos = val.toLowerCase().indexOf(text);
                            if (pos >= 0 &&
                      Severity: Minor
                      Found in docs/build/_static/doctools.js - About 1 hr to fix

                        Function ajaxHandleResponses has 37 lines of code (exceeds 25 allowed). Consider refactoring.
                        Open

                        function ajaxHandleResponses( s, jqXHR, responses ) {
                        
                            var ct, type, finalDataType, firstDataType,
                                contents = s.contents,
                                dataTypes = s.dataTypes;
                        Severity: Minor
                        Found in docs/build/_static/jquery-3.5.1.js - About 1 hr to fix

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

                                                          mightThrow = function() {
                                                              var returned, then;
                          
                                                              // Support: Promises/A+ section 2.3.3.3.3
                                                              // https://promisesaplus.com/#point-59
                          Severity: Minor
                          Found in docs/build/_static/jquery-3.5.1.js - About 1 hr to fix

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

                            function boxModelAdjustment( elem, dimension, box, isBorderBox, styles, computedVal ) {
                                var i = dimension === "width" ? 1 : 0,
                                    extra = 0,
                                    delta = 0;
                            
                            
                            Severity: Minor
                            Found in docs/build/_static/jquery-3.5.1.js - About 1 hr to fix

                              Function __init__ has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
                              Open

                                  def __init__(self, path):
                                      r"""
                                      Initialises an instance of the :class:`~effmass.inputs.Data` class and
                                      checks data using :meth:`check_data`.
                              
                              
                              Severity: Minor
                              Found in effmass/inputs.py - About 1 hr 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 getWidthOrHeight has 35 lines of code (exceeds 25 allowed). Consider refactoring.
                              Open

                              function getWidthOrHeight( elem, dimension, extra ) {
                              
                                  // Start with computed style
                                  var styles = getStyles( elem ),
                              
                              
                              Severity: Minor
                              Found in docs/build/_static/jquery-3.5.1.js - About 1 hr to fix

                                Function handlers has 34 lines of code (exceeds 25 allowed). Consider refactoring.
                                Open

                                    handlers: function( event, handlers ) {
                                        var i, handleObj, sel, matchedHandlers, matchedSelectors,
                                            handlerQueue = [],
                                            delegateCount = handlers.delegateCount,
                                            cur = event.target;
                                Severity: Minor
                                Found in docs/build/_static/jquery-3.5.1.js - About 1 hr to fix

                                  Function throttle has 34 lines of code (exceeds 25 allowed). Consider refactoring.
                                  Open

                                    function throttle(func, wait, options) {
                                      var timeout, context, args, result;
                                      var previous = 0;
                                      if (!options) options = {};
                                  
                                  
                                  Severity: Minor
                                  Found in docs/build/_static/underscore-1.12.0.js - About 1 hr to fix
                                    Severity
                                    Category
                                    Status
                                    Source
                                    Language