ClusterLabs/hawk

View on GitHub
hawk/app/models/template.rb

Summary

Maintainability
D
2 days
Test Coverage

Assignment Branch Condition size for instantiate is too high. [82.24/15]
Open

    def instantiate(xml)
      record = allocate
      record.clazz = xml.attributes["class"] || ""
      record.provider = xml.attributes["provider"] || ""
      record.type = xml.attributes["type"] || ""
Severity: Minor
Found in hawk/app/models/template.rb by rubocop

This cop checks that the ABC size of methods is not higher than the configured maximum. The ABC size is based on assignments, branches (method calls), and conditions. See http://c2.com/cgi/wiki?AbcMetric

Method has too many lines. [79/30]
Open

    def instantiate(xml)
      record = allocate
      record.clazz = xml.attributes["class"] || ""
      record.provider = xml.attributes["provider"] || ""
      record.type = xml.attributes["type"] || ""
Severity: Minor
Found in hawk/app/models/template.rb by rubocop

This cop checks if the length of a method exceeds some maximum value. Comment lines can optionally be ignored. The maximum allowed length is configurable.

Method instantiate has a Cognitive Complexity of 36 (exceeds 5 allowed). Consider refactoring.
Open

    def instantiate(xml)
      record = allocate
      record.clazz = xml.attributes["class"] || ""
      record.provider = xml.attributes["provider"] || ""
      record.type = xml.attributes["type"] || ""
Severity: Minor
Found in hawk/app/models/template.rb - About 5 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

Assignment Branch Condition size for shell_syntax is too high. [32.25/15]
Open

  def shell_syntax
    [].tap do |cmd|
      # TODO(must): Ensure clazz, provider and type are sanitized
      cmd.push "rsc_template #{id}"

Severity: Minor
Found in hawk/app/models/template.rb by rubocop

This cop checks that the ABC size of methods is not higher than the configured maximum. The ABC size is based on assignments, branches (method calls), and conditions. See http://c2.com/cgi/wiki?AbcMetric

Assignment Branch Condition size for options is too high. [30.63/15]
Open

    def options
      Rails.cache.fetch(:crm_ra_classes, expires_in: 2.hours) do
        {}.tap do |result|
          clazzes = Util.safe_x('/usr/sbin/crm', 'ra', 'classes').split(/\n/)
          clazzes.delete("heartbeat") unless File.directory?("/etc/ha.d/resource.d")
Severity: Minor
Found in hawk/app/models/template.rb by rubocop

This cop checks that the ABC size of methods is not higher than the configured maximum. The ABC size is based on assignments, branches (method calls), and conditions. See http://c2.com/cgi/wiki?AbcMetric

Method has too many lines. [44/30]
Open

    def help_text
      super.merge(
        "template" => {
          type: "string",
          default: "",
Severity: Minor
Found in hawk/app/models/template.rb by rubocop

This cop checks if the length of a method exceeds some maximum value. Comment lines can optionally be ignored. The maximum allowed length is configurable.

Method options has a Cognitive Complexity of 23 (exceeds 5 allowed). Consider refactoring.
Open

    def options
      Rails.cache.fetch(:crm_ra_classes, expires_in: 2.hours) do
        {}.tap do |result|
          clazzes = Util.safe_x('/usr/sbin/crm', 'ra', 'classes').split(/\n/)
          clazzes.delete("heartbeat") unless File.directory?("/etc/ha.d/resource.d")
Severity: Minor
Found in hawk/app/models/template.rb - 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

Perceived complexity for instantiate is too high. [20/7]
Open

    def instantiate(xml)
      record = allocate
      record.clazz = xml.attributes["class"] || ""
      record.provider = xml.attributes["provider"] || ""
      record.type = xml.attributes["type"] || ""
Severity: Minor
Found in hawk/app/models/template.rb by rubocop

This cop tries to produce a complexity score that's a measure of the complexity the reader experiences when looking at a method. For that reason it considers when nodes as something that doesn't add as much complexity as an if or a &&. Except if it's one of those special case/when constructs where there's no expression after case. Then the cop treats it as an if/elsif/elsif... and lets all the when nodes count. In contrast to the CyclomaticComplexity cop, this cop considers else nodes as adding complexity.

Example:

def my_method                   # 1
  if cond                       # 1
    case var                    # 2 (0.8 + 4 * 0.2, rounded)
    when 1 then func_one
    when 2 then func_two
    when 3 then func_three
    when 4..10 then func_other
    end
  else                          # 1
    do_something until a && b   # 2
  end                           # ===
end                             # 7 complexity points

Method instantiate has 79 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    def instantiate(xml)
      record = allocate
      record.clazz = xml.attributes["class"] || ""
      record.provider = xml.attributes["provider"] || ""
      record.type = xml.attributes["type"] || ""
Severity: Major
Found in hawk/app/models/template.rb - About 3 hrs to fix

    File template.rb has 289 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    require 'invoker'
    
    class Template < Resource
      attribute :clazz, String, default: "ocf"
      attribute :provider, String
    Severity: Minor
    Found in hawk/app/models/template.rb - About 2 hrs to fix

      Assignment Branch Condition size for update is too high. [25.1/15]
      Open

        def update
          unless self.class.exists?(self.id, self.class.cib_type_write)
            errors.add :base, _("The ID \"%{id}\" does not exist") % { id: self.id }
            return false
          end
      Severity: Minor
      Found in hawk/app/models/template.rb by rubocop

      This cop checks that the ABC size of methods is not higher than the configured maximum. The ABC size is based on assignments, branches (method calls), and conditions. See http://c2.com/cgi/wiki?AbcMetric

      Cyclomatic complexity for instantiate is too high. [15/6]
      Open

          def instantiate(xml)
            record = allocate
            record.clazz = xml.attributes["class"] || ""
            record.provider = xml.attributes["provider"] || ""
            record.type = xml.attributes["type"] || ""
      Severity: Minor
      Found in hawk/app/models/template.rb by rubocop

      This cop checks that the cyclomatic complexity of methods is not higher than the configured maximum. The cyclomatic complexity is the number of linearly independent paths through a method. The algorithm counts decision points and adds one.

      An if statement (or unless or ?:) increases the complexity by one. An else branch does not, since it doesn't add a decision point. The && operator (or keyword and) can be converted to a nested if statement, and ||/or is shorthand for a sequence of ifs, so they also add one. Loops can be said to have an exit condition, so they add one.

      Method has too many lines. [33/30]
      Open

        def shell_syntax
          [].tap do |cmd|
            # TODO(must): Ensure clazz, provider and type are sanitized
            cmd.push "rsc_template #{id}"
      
      
      Severity: Minor
      Found in hawk/app/models/template.rb by rubocop

      This cop checks if the length of a method exceeds some maximum value. Comment lines can optionally be ignored. The maximum allowed length is configurable.

      Method shell_syntax has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
      Open

        def shell_syntax
          [].tap do |cmd|
            # TODO(must): Ensure clazz, provider and type are sanitized
            cmd.push "rsc_template #{id}"
      
      
      Severity: Minor
      Found in hawk/app/models/template.rb - 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

      Method help_text has 44 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          def help_text
            super.merge(
              "template" => {
                type: "string",
                default: "",
      Severity: Minor
      Found in hawk/app/models/template.rb - About 1 hr to fix

        Method shell_syntax has 33 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

          def shell_syntax
            [].tap do |cmd|
              # TODO(must): Ensure clazz, provider and type are sanitized
              cmd.push "rsc_template #{id}"
        
        
        Severity: Minor
        Found in hawk/app/models/template.rb - About 1 hr to fix

          Use each_key instead of keys.each.
          Open

                  node.utilization.keys.each do |key|
          Severity: Minor
          Found in hawk/app/models/template.rb by rubocop

          This cop checks for uses of each_key and each_value Hash methods.

          Note: If you have an array of two-element arrays, you can put parentheses around the block arguments to indicate that you're not working with a hash, and suppress RuboCop offenses.

          Example:

          # bad
          hash.keys.each { |k| p k }
          hash.values.each { |v| p v }
          hash.each { |k, _v| p k }
          hash.each { |_k, v| p v }
          
          # good
          hash.each_key { |k| p k }
          hash.each_value { |v| p v }

          Use each_value instead of each.
          Open

                  ops.each do |_id, op|
          Severity: Minor
          Found in hawk/app/models/template.rb by rubocop

          This cop checks for uses of each_key and each_value Hash methods.

          Note: If you have an array of two-element arrays, you can put parentheses around the block arguments to indicate that you're not working with a hash, and suppress RuboCop offenses.

          Example:

          # bad
          hash.keys.each { |k| p k }
          hash.values.each { |v| p v }
          hash.each { |k, _v| p k }
          hash.each { |_k, v| p v }
          
          # good
          hash.each_key { |k| p k }
          hash.each_value { |v| p v }

          Similar blocks of code found in 2 locations. Consider refactoring.
          Open

            def shell_syntax
              [].tap do |cmd|
                # TODO(must): Ensure clazz, provider and type are sanitized
                cmd.push "rsc_template #{id}"
          
          
          Severity: Major
          Found in hawk/app/models/template.rb and 1 other location - About 2 hrs to fix
          hawk/app/models/primitive.rb on lines 113..153

          Duplicated Code

          Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

          Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

          When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

          Tuning

          This issue has a mass of 84.

          We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

          The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

          If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

          See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

          Refactorings

          Further Reading

          Identical blocks of code found in 2 locations. Consider refactoring.
          Open

            def update
              unless self.class.exists?(self.id, self.class.cib_type_write)
                errors.add :base, _("The ID \"%{id}\" does not exist") % { id: self.id }
                return false
              end
          Severity: Major
          Found in hawk/app/models/template.rb and 1 other location - About 1 hr to fix
          hawk/app/models/primitive.rb on lines 93..110

          Duplicated Code

          Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

          Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

          When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

          Tuning

          This issue has a mass of 57.

          We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

          The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

          If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

          See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

          Refactorings

          Further Reading

          Redundant self detected.
          Open

                errors.add :base, _("The ID \"%{id}\" does not exist") % { id: self.id }
          Severity: Minor
          Found in hawk/app/models/template.rb by rubocop

          This cop checks for redundant uses of self.

          The usage of self is only needed when:

          • Sending a message to same object with zero arguments in presence of a method name clash with an argument or a local variable.

          • Calling an attribute writer to prevent an local variable assignment.

          Note, with using explicit self you can only send messages with public or protected scope, you cannot send private messages this way.

          Note we allow uses of self with operators because it would be awkward otherwise.

          Example:

          # bad
          def foo(bar)
            self.baz
          end
          
          # good
          def foo(bar)
            self.bar  # Resolves name clash with the argument.
          end
          
          def foo
            bar = 1
            self.bar  # Resolves name clash with the local variable.
          end
          
          def foo
            %w[x y z].select do |bar|
              self.bar == bar  # Resolves name clash with argument of the block.
            end
          end

          Favor a normal if-statement over a modifier clause in a multiline statement.
          Open

                      ops.push [
                        "OCF_CHECK_LEVEL",
                        cl.attributes["value"]
                      ] if cl
          Severity: Minor
          Found in hawk/app/models/template.rb by rubocop

          Checks for uses of if/unless modifiers with multiple-lines bodies.

          Example:

          # bad
          {
            result: 'this should not happen'
          } unless cond
          
          # good
          { result: 'ok' } if cond

          Empty line detected around arguments.
          Open

          
                      ops.push [
          Severity: Minor
          Found in hawk/app/models/template.rb by rubocop

          This cops checks if empty lines exist around the arguments of a method invocation.

          Example:

          # bad
          do_something(
            foo
          
          )
          
          process(bar,
          
                  baz: qux,
                  thud: fred)
          
          some_method(
          
            [1,2,3],
            x: y
          )
          
          # good
          do_something(
            foo
          )
          
          process(bar,
                  baz: qux,
                  thud: fred)
          
          some_method(
            [1,2,3],
            x: y
          )

          Favor format over String#%.
          Open

                errors.add :base, _("The ID \"%{id}\" does not exist") % { id: self.id }
          Severity: Minor
          Found in hawk/app/models/template.rb by rubocop

          This cop enforces the use of a single string formatting utility. Valid options include Kernel#format, Kernel#sprintf and String#%.

          The detection of String#% cannot be implemented in a reliable manner for all cases, so only two scenarios are considered - if the first argument is a string literal and if the second argument is an array literal.

          Example: EnforcedStyle: format(default)

          # bad
          puts sprintf('%10s', 'hoge')
          puts '%10s' % 'hoge'
          
          # good
          puts format('%10s', 'hoge')

          Example: EnforcedStyle: sprintf

          # bad
          puts format('%10s', 'hoge')
          puts '%10s' % 'hoge'
          
          # good
          puts sprintf('%10s', 'hoge')

          Example: EnforcedStyle: percent

          # bad
          puts format('%10s', 'hoge')
          puts sprintf('%10s', 'hoge')
          
          # good
          puts '%10s' % 'hoge'

          Prefer annotated tokens (like %<foo>s</foo>) over template tokens (like %{foo}).
          Open

                errors.add :base, _("The ID \"%{id}\" does not exist") % { id: self.id }
          Severity: Minor
          Found in hawk/app/models/template.rb by rubocop

          Use a consistent style for named format string tokens.

          Note: unannotated style cop only works for strings which are passed as arguments to those methods: sprintf, format, %. The reason is that unannotated format is very similar to encoded URLs or Date/Time formatting strings.

          Example: EnforcedStyle: annotated (default)

          # bad
          format('%{greeting}', greeting: 'Hello')
          format('%s', 'Hello')
          
          # good
          format('%<greeting>s', greeting: 'Hello')</greeting>

          Example: EnforcedStyle: template

          # bad
          format('%<greeting>s', greeting: 'Hello')
          format('%s', 'Hello')
          
          # good
          format('%{greeting}', greeting: 'Hello')</greeting>

          Example: EnforcedStyle: unannotated

          # bad
          format('%<greeting>s', greeting: 'Hello')
          format('%{greeting}', 'Hello')
          
          # good
          format('%s', 'Hello')</greeting>

          Unnecessary utf-8 encoding comment.
          Open

          # coding: utf-8
          Severity: Minor
          Found in hawk/app/models/template.rb by rubocop

          Favor modifier if usage when having a single-line body. Another good alternative is the usage of control flow &&/||.
          Open

                  if params[:provider]
          Severity: Minor
          Found in hawk/app/models/template.rb by rubocop

          Checks for if and unless statements that would fit on one line if written as a modifier if/unless. The maximum line length is configured in the Metrics/LineLength cop.

          Example:

          # bad
          if condition
            do_stuff(bar)
          end
          
          unless qux.empty?
            Foo.do_something
          end
          
          # good
          do_stuff(bar) if condition
          Foo.do_something unless qux.empty?

          Redundant self detected.
          Open

              unless self.class.exists?(self.id, self.class.cib_type_write)
          Severity: Minor
          Found in hawk/app/models/template.rb by rubocop

          This cop checks for redundant uses of self.

          The usage of self is only needed when:

          • Sending a message to same object with zero arguments in presence of a method name clash with an argument or a local variable.

          • Calling an attribute writer to prevent an local variable assignment.

          Note, with using explicit self you can only send messages with public or protected scope, you cannot send private messages this way.

          Note we allow uses of self with operators because it would be awkward otherwise.

          Example:

          # bad
          def foo(bar)
            self.baz
          end
          
          # good
          def foo(bar)
            self.bar  # Resolves name clash with the argument.
          end
          
          def foo
            bar = 1
            self.bar  # Resolves name clash with the local variable.
          end
          
          def foo
            %w[x y z].select do |bar|
              self.bar == bar  # Resolves name clash with argument of the block.
            end
          end

          Add an empty line after magic comments.
          Open

          # Copyright (c) 2009-2015 Tim Serong <tserong@suse.com>
          Severity: Minor
          Found in hawk/app/models/template.rb by rubocop

          Checks for a newline after the final magic comment.

          Example:

          # good
          # frozen_string_literal: true
          
          # Some documentation for Person
          class Person
            # Some code
          end
          
          # bad
          # frozen_string_literal: true
          # Some documentation for Person
          class Person
            # Some code
          end

          Empty line detected around arguments.
          Open

          
                  Hash[vals]
          Severity: Minor
          Found in hawk/app/models/template.rb by rubocop

          This cops checks if empty lines exist around the arguments of a method invocation.

          Example:

          # bad
          do_something(
            foo
          
          )
          
          process(bar,
          
                  baz: qux,
                  thud: fred)
          
          some_method(
          
            [1,2,3],
            x: y
          )
          
          # good
          do_something(
            foo
          )
          
          process(bar,
                  baz: qux,
                  thud: fred)
          
          some_method(
            [1,2,3],
            x: y
          )

          Use the return of the conditional for variable assignment and comparison.
          Open

                        if m[2] == "m"
                          interval = (m[1].to_i * 60).to_s
                        elsif m[2] == "h"
                          interval = (m[1].to_i * 60 * 60).to_s
                        else
          Severity: Minor
          Found in hawk/app/models/template.rb by rubocop

          Empty line detected around arguments.
          Open

          
                  Hash[vals]
          Severity: Minor
          Found in hawk/app/models/template.rb by rubocop

          This cops checks if empty lines exist around the arguments of a method invocation.

          Example:

          # bad
          do_something(
            foo
          
          )
          
          process(bar,
          
                  baz: qux,
                  thud: fred)
          
          some_method(
          
            [1,2,3],
            x: y
          )
          
          # good
          do_something(
            foo
          )
          
          process(bar,
                  baz: qux,
                  thud: fred)
          
          some_method(
            [1,2,3],
            x: y
          )

          Empty line detected around arguments.
          Open

          
                    [
          Severity: Minor
          Found in hawk/app/models/template.rb by rubocop

          This cops checks if empty lines exist around the arguments of a method invocation.

          Example:

          # bad
          do_something(
            foo
          
          )
          
          process(bar,
          
                  baz: qux,
                  thud: fred)
          
          some_method(
          
            [1,2,3],
            x: y
          )
          
          # good
          do_something(
            foo
          )
          
          process(bar,
                  baz: qux,
                  thud: fred)
          
          some_method(
            [1,2,3],
            x: y
          )

          Redundant self detected.
          Open

                  record.class.to_s == self.to_s
          Severity: Minor
          Found in hawk/app/models/template.rb by rubocop

          This cop checks for redundant uses of self.

          The usage of self is only needed when:

          • Sending a message to same object with zero arguments in presence of a method name clash with an argument or a local variable.

          • Calling an attribute writer to prevent an local variable assignment.

          Note, with using explicit self you can only send messages with public or protected scope, you cannot send private messages this way.

          Note we allow uses of self with operators because it would be awkward otherwise.

          Example:

          # bad
          def foo(bar)
            self.baz
          end
          
          # good
          def foo(bar)
            self.bar  # Resolves name clash with the argument.
          end
          
          def foo
            bar = 1
            self.bar  # Resolves name clash with the local variable.
          end
          
          def foo
            %w[x y z].select do |bar|
              self.bar == bar  # Resolves name clash with argument of the block.
            end
          end

          Avoid comma after the last parameter of a method call.
          Open

                  },
          Severity: Minor
          Found in hawk/app/models/template.rb by rubocop

          This cop checks for trailing comma in argument lists.

          Example: EnforcedStyleForMultiline: consistent_comma

          # bad
          method(1, 2,)
          
          # good
          method(
            1, 2,
            3,
          )
          
          # good
          method(
            1,
            2,
          )

          Example: EnforcedStyleForMultiline: comma

          # bad
          method(1, 2,)
          
          # good
          method(
            1,
            2,
          )

          Example: EnforcedStyleForMultiline: no_comma (default)

          # bad
          method(1, 2,)
          
          # good
          method(
            1,
            2
          )

          Empty line detected around arguments.
          Open

          
                    ops = el.attributes.collect do |name, value|
          Severity: Minor
          Found in hawk/app/models/template.rb by rubocop

          This cops checks if empty lines exist around the arguments of a method invocation.

          Example:

          # bad
          do_something(
            foo
          
          )
          
          process(bar,
          
                  baz: qux,
                  thud: fred)
          
          some_method(
          
            [1,2,3],
            x: y
          )
          
          # good
          do_something(
            foo
          )
          
          process(bar,
                  baz: qux,
                  thud: fred)
          
          some_method(
            [1,2,3],
            x: y
          )

          Empty line detected around arguments.
          Open

          
                      [
          Severity: Minor
          Found in hawk/app/models/template.rb by rubocop

          This cops checks if empty lines exist around the arguments of a method invocation.

          Example:

          # bad
          do_something(
            foo
          
          )
          
          process(bar,
          
                  baz: qux,
                  thud: fred)
          
          some_method(
          
            [1,2,3],
            x: y
          )
          
          # good
          do_something(
            foo
          )
          
          process(bar,
                  baz: qux,
                  thud: fred)
          
          some_method(
            [1,2,3],
            x: y
          )

          Empty line detected around arguments.
          Open

          
                  Hash[vals]
          Severity: Minor
          Found in hawk/app/models/template.rb by rubocop

          This cops checks if empty lines exist around the arguments of a method invocation.

          Example:

          # bad
          do_something(
            foo
          
          )
          
          process(bar,
          
                  baz: qux,
                  thud: fred)
          
          some_method(
          
            [1,2,3],
            x: y
          )
          
          # good
          do_something(
            foo
          )
          
          process(bar,
                  baz: qux,
                  thud: fred)
          
          some_method(
            [1,2,3],
            x: y
          )

          Empty line detected around arguments.
          Open

          
                    if key == "monitor"
          Severity: Minor
          Found in hawk/app/models/template.rb by rubocop

          This cops checks if empty lines exist around the arguments of a method invocation.

          Example:

          # bad
          do_something(
            foo
          
          )
          
          process(bar,
          
                  baz: qux,
                  thud: fred)
          
          some_method(
          
            [1,2,3],
            x: y
          )
          
          # good
          do_something(
            foo
          )
          
          process(bar,
                  baz: qux,
                  thud: fred)
          
          some_method(
            [1,2,3],
            x: y
          )

          Favor modifier if usage when having a single-line body. Another good alternative is the usage of control flow &&/||.
          Open

                  if params[:clazz]
          Severity: Minor
          Found in hawk/app/models/template.rb by rubocop

          Checks for if and unless statements that would fit on one line if written as a modifier if/unless. The maximum line length is configured in the Metrics/LineLength cop.

          Example:

          # bad
          if condition
            do_stuff(bar)
          end
          
          unless qux.empty?
            Foo.do_something
          end
          
          # good
          do_stuff(bar) if condition
          Foo.do_something unless qux.empty?

          Empty line detected around arguments.
          Open

          
                  Hash[vals]
          Severity: Minor
          Found in hawk/app/models/template.rb by rubocop

          This cops checks if empty lines exist around the arguments of a method invocation.

          Example:

          # bad
          do_something(
            foo
          
          )
          
          process(bar,
          
                  baz: qux,
                  thud: fred)
          
          some_method(
          
            [1,2,3],
            x: y
          )
          
          # good
          do_something(
            foo
          )
          
          process(bar,
                  baz: qux,
                  thud: fred)
          
          some_method(
            [1,2,3],
            x: y
          )

          Shadowing outer local variable - cmd.
          Open

                cmd = [].tap do |cmd|
          Severity: Minor
          Found in hawk/app/models/template.rb by rubocop

          This cop looks for use of the same name as outer local variables for block arguments or block local variables. This is a mimic of the warning "shadowing outer local variable - foo" from ruby -cw.

          Example:

          # bad
          
          def some_method
            foo = 1
          
            2.times do |foo| # shadowing outer `foo`
              do_something(foo)
            end
          end

          Example:

          # good
          
          def some_method
            foo = 1
          
            2.times do |bar|
              do_something(bar)
            end
          end

          There are no issues that match your filters.

          Category
          Status