nertwork/frr-cookbook

View on GitHub
recipes/zebra.rb

Summary

Maintainability
A
0 mins
Test Coverage

Use 2 (not 7) spaces for indenting an expression spanning multiple lines.
Open

         node['quagga']['interfaces'].empty? &&
Severity: Minor
Found in recipes/zebra.rb by rubocop

This cop checks the indentation of the right hand side operand in binary operations that span more than one line.

Example:

# bad
if a +
b
  something
end

# good
if a +
   b
  something
end

Avoid using {...} for multi-line blocks.
Open

  not_if { node['quagga']['prefix_lists'].empty? &&
Severity: Minor
Found in recipes/zebra.rb by rubocop

Check for uses of braces or do/end around single line or multi-line blocks.

Example: EnforcedStyle: linecountbased (default)

# bad - single line block
items.each do |item| item / 5 end

# good - single line block
items.each { |item| item / 5 }

# bad - multi-line block
things.map { |thing|
  something = thing.some_method
  process(something)
}

# good - multi-line block
things.map do |thing|
  something = thing.some_method
  process(something)
end

Example: EnforcedStyle: semantic

# Prefer `do...end` over `{...}` for procedural blocks.

# return value is used/assigned
# bad
foo = map do |x|
  x
end
puts (map do |x|
  x
end)

# return value is not used out of scope
# good
map do |x|
  x
end

# Prefer `{...}` over `do...end` for functional blocks.

# return value is not used out of scope
# bad
each { |x|
  x
}

# return value is used/assigned
# good
foo = map { |x|
  x
}
map { |x|
  x
}.inspect

Example: EnforcedStyle: bracesforchaining

# bad
words.each do |word|
  word.flip.flop
end.join("-")

# good
words.each { |word|
  word.flip.flop
}.join("-")

Use 2 (not 7) spaces for indenting an expression spanning multiple lines.
Open

         node['quagga']['static_routes'].empty? }
Severity: Minor
Found in recipes/zebra.rb by rubocop

This cop checks the indentation of the right hand side operand in binary operations that span more than one line.

Example:

# bad
if a +
b
  something
end

# good
if a +
   b
  something
end

Block body expression is on the same line as the block start.
Open

  not_if { node['quagga']['prefix_lists'].empty? &&
         node['quagga']['interfaces'].empty? &&
         node['quagga']['static_routes'].empty? }
Severity: Minor
Found in recipes/zebra.rb by rubocop

This cop checks whether the multiline do end blocks have a newline after the start of the block. Additionally, it checks whether the block arguments, if any, are on the same line as the start of the block.

Example:

# bad
blah do |i| foo(i)
  bar(i)
end

# bad
blah do
  |i| foo(i)
  bar(i)
end

# good
blah do |i|
  foo(i)
  bar(i)
end

# bad
blah { |i| foo(i)
  bar(i)
}

# good
blah { |i|
  foo(i)
  bar(i)
}

Expression at 11, 49 should be on its own line.
Open

         node['quagga']['static_routes'].empty? }
Severity: Minor
Found in recipes/zebra.rb by rubocop

This cop checks whether the end statement of a do..end block is on its own line.

Example:

# bad
blah do |i|
  foo(i) end

# good
blah do |i|
  foo(i)
end

# bad
blah { |i|
  foo(i) }

# good
blah { |i|
  foo(i)
}

There are no issues that match your filters.

Category
Status