angelakuo/citydogshare

View on GitHub

Showing 2,136 of 3,976 total issues

Avoid too many return statements within this function.
Open

    return false;

    Avoid too many return statements within this function.
    Open

        return false;

      Avoid too many return statements within this function.
      Open

          return false;

        Avoid too many return statements within this function.
        Open

            return false;

          Avoid too many return statements within this function.
          Open

                              return P.component.get( thing )

            Avoid too many return statements within this function.
            Open

                    return xPct[j-1] + closest(
                        value - xPct[j-1],
                        xSteps[j-1]
                    );

              Avoid too many return statements within this function.
              Open

                                  return P.component.get( thing )

                Avoid too many return statements within this function.
                Open

                        return true;

                  Avoid too many return statements within this function.
                  Open

                          return false;

                    Avoid too many return statements within this function.
                    Open

                                return;

                      Avoid too many return statements within this function.
                      Open

                          return false;

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

                        }(this));      ;function compile(script, options) {
                                try {
                                  return CoffeeScript.compile(script, options);
                                } catch (err) {
                                  if (err instanceof SyntaxError && err.location) {

                        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 SpyStrategy has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                        Open

                        getJasmineRequireObj().SpyStrategy = function(j$) {
                        
                          function SpyStrategy(options) {
                            options = options || {};
                        
                        

                        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 delete_checked_pictures has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                        Open

                          def delete_checked_pictures
                            activated_ids = params[:activated].collect {|id| id.to_i} if params[:activated]
                            seen_ids = params[:seen].collect {|id| id.to_i} if params[:seen]
                        
                            if activated_ids
                        Severity: Minor
                        Found in app/controllers/dogs_controller.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 show has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                        Open

                          def show
                            if User.exists?(params[:id]) == false
                              flash[:notice] = "The user you entered does not exist."
                              redirect_to @current_user
                            else
                        Severity: Minor
                        Found in app/controllers/users_controller.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 destroy has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                        Open

                          def destroy
                            star_to_remove = Star.where(dog_id: @dog.id, user_id: current_user.id).first
                            if star_to_remove && star_to_remove.destroy
                              if !request.xhr?
                                redirect_to :back
                        Severity: Minor
                        Found in app/controllers/starred_dogs_controller.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