jeremytregunna/ruby-trello

View on GitHub

Showing 15 of 28 total issues

Function prototype has a Cognitive Complexity of 67 (exceeds 5 allowed). Consider refactoring.
Open

Searcher.prototype = new function() {
  // search is performed in chunks of 1000 for non-blocking user input
  var CHUNK_SIZE = 1000;
  // do not try to find more than 100 results
  var MAX_RESULTS = 100;
Severity: Minor
Found in doc/js/searcher.js - About 1 day 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 prototype has 161 lines of code (exceeds 25 allowed). Consider refactoring.
Open

Searcher.prototype = new function() {
  // search is performed in chunks of 1000 for non-blocking user input
  var CHUNK_SIZE = 1000;
  // do not try to find more than 100 results
  var MAX_RESULTS = 100;
Severity: Major
Found in doc/js/searcher.js - About 6 hrs to fix

    Function prototype has a Cognitive Complexity of 26 (exceeds 5 allowed). Consider refactoring.
    Open

    Search.prototype = Object.assign({}, Navigation, new function() {
      var suid = 1;
    
      this.init = function() {
        var _this = this;
    Severity: Minor
    Found in doc/js/search.js - About 3 hrs 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

    Class BasicData has 29 methods (exceeds 20 allowed). Consider refactoring.
    Open

      class BasicData
        include ActiveModel::Validations
        include ActiveModel::Dirty
        include ActiveModel::Serializers::JSON
    
    
    Severity: Minor
    Found in lib/trello/basic_data.rb - About 3 hrs to fix

      Class Card has 28 methods (exceeds 20 allowed). Consider refactoring.
      Open

        class Card < BasicData
          schema do
            # readonly
            attribute :id, readonly: true, primary_key: true
            attribute :short_id, readonly: true, remote_key: 'idShort'
      Severity: Minor
      Found in lib/trello/card.rb - About 3 hrs to fix

        Function prototype has 81 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

        Search.prototype = Object.assign({}, Navigation, new function() {
          var suid = 1;
        
          this.init = function() {
            var _this = this;
        Severity: Major
        Found in doc/js/search.js - About 3 hrs to fix

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

            function performSearch(data, regexps, queries, highlighters, state) {
              var searchIndex = data.searchIndex;
              var longSearchIndex = data.longSearchIndex;
              var info = data.info;
              var result = [];
          Severity: Minor
          Found in doc/js/searcher.js - About 1 hr to fix

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

              function performSearch(data, regexps, queries, highlighters, state) {
            Severity: Minor
            Found in doc/js/searcher.js - About 35 mins to fix

              Method parse_json has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
              Open

                    def parse_json(data, encoding = 'UTF-8')
                      # Trello.http_client.parse_json(data, encoding)
                      case data
                      when Trello::Response
                        JSON.parse(data.body.force_encoding(encoding))
              Severity: Minor
              Found in lib/trello/json_utils.rb - 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 hookSearch has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
              Open

              function hookSearch() {
                var input  = document.querySelector('#search-field');
                var result = document.querySelector('#search-results');
                result.classList.remove("initially-hidden");
              
              
              Severity: Minor
              Found in doc/js/darkfish.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

              Method build_payload_for_create has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
              Open

                      def build_payload_for_create(attributes, payload)
                        payload ||= {}
                        return payload unless for_action?(:create)
                        return payload unless attributes.key?(name)
              
              
              Severity: Minor
              Found in lib/trello/schema/attribute/board_pref.rb - 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

              Method build_payload_for_create has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
              Open

                      def build_payload_for_create(attributes, payload)
                        payload ||= {}
                        return payload unless for_action?(:create)
                        return payload unless attributes.key?(name)
              
              
              Severity: Minor
              Found in lib/trello/schema/attribute/custom_field_display.rb - 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

              Method build_payload_for_create has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
              Open

                      def build_payload_for_create(attributes, payload)
                        payload ||= {}
                        return payload unless for_action?(:create)
                        return payload unless attributes.key?(name)
              
              
              Severity: Minor
              Found in lib/trello/schema/attribute/default.rb - 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

              Method invoke_verb has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
              Open

                  def invoke_verb(name, uri, body = nil)
                    request = Request.new name, uri, {}, body
                    response = TInternet.execute auth_policy.authorize(request)
              
                    return '' unless response
              Severity: Minor
              Found in lib/trello/client.rb - 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

              Method authorize_url has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
              Open

                def self.authorize_url(options = {})
                  params = options.dup
                  params[:key] ||= configuration.developer_public_key or
                    raise ArgumentError, 'Please configure your Trello public key'
                  params[:name] ||= 'Ruby Trello'
              Severity: Minor
              Found in lib/trello.rb - 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