amiorin/reloadlive

View on GitHub

Showing 37 of 47 total issues

Function request has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
Open

  request: function(message, timeout) {
    var xhrClass = Faye.ENV.XDomainRequest ? XDomainRequest : XMLHttpRequest,
        xhr      = new xhrClass(),
        retry    = this.retry(message, timeout),
        self     = this;
Severity: Minor
Found in lib/reloadlive/static/client.js - About 55 mins 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 extend has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
Open

  extend: function(dest, source, overwrite) {
    if (!source) return dest;
    for (var key in source) {
      if (!source.hasOwnProperty(key)) continue;
      if (dest.hasOwnProperty(key) && overwrite === false) continue;
Severity: Minor
Found in lib/reloadlive/static/client.js - About 55 mins 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

Method last_file_changed has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
Open

  def last_file_changed
    timestamp = 0
    last_file_changed = nil
    Dir.glob(dirs(true)).each do |file|
      next unless File.file? file
Severity: Minor
Found in lib/reloadlive/config.rb - About 55 mins 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 copyObject has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
Open

  copyObject: function(object) {
    var clone, i, key;
    if (object instanceof Array) {
      clone = [];
      i = object.length;
Severity: Minor
Found in lib/reloadlive/static/client.js - About 55 mins 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 receiveMessage has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
Open

  receiveMessage: function(message) {
    this.pipeThroughExtensions('incoming', message, function(message) {
      if (!message) return;

      if (message.advice) this._handleAdvice(message.advice);
Severity: Minor
Found in lib/reloadlive/static/client.js - About 45 mins 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

Avoid deeply nested control flow statements.
Open

                            if (v !== undefined) {
                                value[k] = v;
                            } else {
                                delete value[k];
                            }
Severity: Major
Found in lib/reloadlive/static/client.js - About 45 mins to fix

    Method thread has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
    Open

      def thread
        t = Thread.new do
          client = Faye::Client.new("http://localhost:#{options['port']}/faye")
          listener = Listen::Listener.new(*dirs) do |modified, added, removed|
            filename = modified.first ? modified.first    :
    Severity: Minor
    Found in lib/reloadlive/config.rb - About 45 mins 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 unbind has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
    Open

      unbind: function(eventType, listener, context) {
        if (!this._subscribers || !this._subscribers[eventType]) return;
    
        if (!listener) {
          delete this._subscribers[eventType];
    Severity: Minor
    Found in lib/reloadlive/static/client.js - About 45 mins 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 random has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
    Open

      random: function(bitlength) {
        bitlength = bitlength || this.ID_LENGTH;
        if (bitlength > 32) {
          var parts  = Math.ceil(bitlength / 32),
              string = '';
    Severity: Minor
    Found in lib/reloadlive/static/client.js - About 45 mins 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

    Avoid deeply nested control flow statements.
    Open

                            if (v) {
                                partial.push(quote(k) + (gap ? ': ' : ':') + v);
                            }
    Severity: Major
    Found in lib/reloadlive/static/client.js - About 45 mins to fix

      Avoid deeply nested control flow statements.
      Open

                              if (v) {
                                  partial.push(quote(k) + (gap ? ': ' : ':') + v);
                              }
      Severity: Major
      Found in lib/reloadlive/static/client.js - About 45 mins to fix

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

          get: function(client, allowed, disabled, callback, context) {
        Severity: Minor
        Found in lib/reloadlive/static/client.js - About 35 mins to fix

          Function pipeThroughExtensions has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
          Open

            pipeThroughExtensions: function(stage, message, callback, context) {
              this.debug('Passing through ? extensions: ?', stage, message);
          
              if (!this._extensions) return callback.call(context, message);
              var extensions = this._extensions.slice();
          Severity: Minor
          Found in lib/reloadlive/static/client.js - About 35 mins 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 asyncEach has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
          Open

            asyncEach: function(list, iterator, callback, context) {
              var n       = list.length,
                  i       = -1,
                  calls   = 0,
                  looping = false;
          Severity: Minor
          Found in lib/reloadlive/static/client.js - About 35 mins 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

          Avoid too many return statements within this function.
          Open

              if (this._connectRequest) return;
          Severity: Major
          Found in lib/reloadlive/static/client.js - About 30 mins to fix

            Function connect has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
            Open

              connect: function(callback, context) {
                if (this._advice.reconnect === this.NONE) return;
                if (this._state === this.DISCONNECTED) return;
            
                if (this._state === this.UNCONNECTED)
            Severity: Minor
            Found in lib/reloadlive/static/client.js - About 25 mins 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 removeExtension has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
            Open

              removeExtension: function(extension) {
                if (!this._extensions) return;
                var i = this._extensions.length;
                while (i--) {
                  if (this._extensions[i] !== extension) continue;
            Severity: Minor
            Found in lib/reloadlive/static/client.js - About 25 mins 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

            Severity
            Category
            Status
            Source
            Language