laboiteproject/lenuage

View on GitHub

Showing 179 of 384 total issues

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

    dispatch: function( event ) {

        // Make a writable jQuery.Event from the native event object
        event = jQuery.event.fix( event );

Severity: Minor
Found in static/dist/js/site-70bd78197e.js - About 1 hr to fix

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

        def update_data(self):
            client = asana.Client.access_token(self.asana_personal_access_token)
            me = client.users.me()
    
            tasks = client.tasks.find_all({'project': self.asana_project_id,
    Severity: Minor
    Found in laboite/apps/tasks/models.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 style has 35 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 static/dist/js/site-70bd78197e.js - About 1 hr to fix

      Function setOffset has 34 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 static/dist/js/site-70bd78197e.js - About 1 hr to fix

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

        function adjustCSS( elem, prop, valueParts, tween ) {
            var adjusted,
                scale = 1,
                maxIterations = 20,
                currentValue = tween ?
        Severity: Minor
        Found in static/dist/js/site-70bd78197e.js - About 1 hr to fix

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

          jQuery.fn.load = function( url, params, callback ) {
              if ( typeof url !== "string" && _load ) {
                  return _load.apply( this, arguments );
              }
          
          
          Severity: Minor
          Found in static/dist/js/site-70bd78197e.js - About 1 hr to fix

            Consider simplifying this complex logical expression.
            Open

                if ( initialInUnit && initialInUnit[ 3 ] !== unit ) {
            
                    // Trust units reported by jQuery.css
                    unit = unit || initialInUnit[ 3 ];
            
            
            Severity: Critical
            Found in static/dist/js/site-70bd78197e.js - About 1 hr to fix

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

                  remove: function( owner, key ) {
                      var i, name, camel,
                          cache = owner[ this.expando ];
              
                      if ( cache === undefined ) {
              Severity: Minor
              Found in static/dist/js/site-70bd78197e.js - About 1 hr to fix

                Function 14 has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
                Open

                },{}],14:[function(require,module,exports){
                /* ========================================================================
                 * Bootstrap: transition.js v3.3.7
                 * http://getbootstrap.com/javascript/#transitions
                 * ========================================================================
                Severity: Minor
                Found in static/dist/js/site-70bd78197e.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 removeClass has 31 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                    removeClass: function( value ) {
                        var classes, elem, cur, curValue, clazz, j, finalValue,
                            i = 0;
                
                        if ( jQuery.isFunction( value ) ) {
                Severity: Minor
                Found in static/dist/js/site-70bd78197e.js - About 1 hr to fix

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

                      handlers: function( event, handlers ) {
                          var i, matches, sel, handleObj,
                              handlerQueue = [],
                              delegateCount = handlers.delegateCount,
                              cur = event.target;
                  Severity: Minor
                  Found in static/dist/js/site-70bd78197e.js - About 1 hr to fix

                    Function applyPlacement has 31 lines of code (exceeds 25 allowed). Consider refactoring.
                    Open

                      Tooltip.prototype.applyPlacement = function (offset, placement) {
                        var $tip   = this.tip()
                        var width  = $tip[0].offsetWidth
                        var height = $tip[0].offsetHeight
                    
                    
                    Severity: Minor
                    Found in static/dist/js/site-70bd78197e.js - About 1 hr to fix

                      Function attr has 30 lines of code (exceeds 25 allowed). Consider refactoring.
                      Open

                          attr: function( elem, name, value ) {
                              var ret, hooks,
                                  nType = elem.nodeType;
                      
                              // Don't get/set attributes on text, comment and attribute nodes
                      Severity: Minor
                      Found in static/dist/js/site-70bd78197e.js - About 1 hr to fix

                        Function show has 30 lines of code (exceeds 25 allowed). Consider refactoring.
                        Open

                          Tab.prototype.show = function () {
                            var $this    = this.element
                            var $ul      = $this.closest('ul:not(.dropdown-menu)')
                            var selector = $this.data('target')
                        
                        
                        Severity: Minor
                        Found in static/dist/js/site-70bd78197e.js - About 1 hr to fix

                          Function off has 28 lines of code (exceeds 25 allowed). Consider refactoring.
                          Open

                              off: function( types, selector, fn ) {
                                  var handleObj, type;
                                  if ( types && types.preventDefault && types.handleObj ) {
                          
                                      // ( event )  dispatched jQuery.Event
                          Severity: Minor
                          Found in static/dist/js/site-70bd78197e.js - About 1 hr to fix

                            Function finish has 28 lines of code (exceeds 25 allowed). Consider refactoring.
                            Open

                                finish: function( type ) {
                                    if ( type !== false ) {
                                        type = type || "fx";
                                    }
                                    return this.each( function() {
                            Severity: Minor
                            Found in static/dist/js/site-70bd78197e.js - About 1 hr to fix

                              Function addClass has 28 lines of code (exceeds 25 allowed). Consider refactoring.
                              Open

                                  addClass: function( value ) {
                                      var classes, elem, cur, curValue, clazz, j, finalValue,
                                          i = 0;
                              
                                      if ( jQuery.isFunction( value ) ) {
                              Severity: Minor
                              Found in static/dist/js/site-70bd78197e.js - About 1 hr to fix

                                Function checkPosition has 28 lines of code (exceeds 25 allowed). Consider refactoring.
                                Open

                                  Affix.prototype.checkPosition = function () {
                                    if (!this.$element.is(':visible')) return
                                
                                    var height       = this.$element.height()
                                    var offset       = this.options.offset
                                Severity: Minor
                                Found in static/dist/js/site-70bd78197e.js - About 1 hr to fix

                                  Function _get_apps has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
                                  Open

                                      def _get_apps(self):
                                          apps_list = []
                                          models = [model for model in apps.get_models() if issubclass(model, App)]
                                          for model in models:
                                              app_instances = model.objects.filter(boite=self.object.boite, enabled=True)
                                  Severity: Minor
                                  Found in boites/views.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 clone has 27 lines of code (exceeds 25 allowed). Consider refactoring.
                                  Open

                                      clone: function( elem, dataAndEvents, deepDataAndEvents ) {
                                          var i, l, srcElements, destElements,
                                              clone = elem.cloneNode( true ),
                                              inPage = jQuery.contains( elem.ownerDocument, elem );
                                  
                                  
                                  Severity: Minor
                                  Found in static/dist/js/site-70bd78197e.js - About 1 hr to fix
                                    Severity
                                    Category
                                    Status
                                    Source
                                    Language