NullVoxPopuli/meshchat

View on GitHub
lib/meshchat/ui/display/manager.rb

Summary

Maintainability
A
0 mins
Test Coverage

Avoid when branches without a body.
Open

          when Network::Message::NodeList.name,
               Network::Message::NodeListDiff.name,
               Network::Message::NodeListHash.name
Severity: Minor
Found in lib/meshchat/ui/display/manager.rb by rubocop

This cop checks for the presence of when branches without a body.

Example:

# bad

case foo
when bar then 1
when baz then # nothing
end

Example:

# good

case foo
when bar then 1
when baz then 2
end

Add an empty line after magic comments. (https://github.com/bbatsov/ruby-style-guide#separate-magic-comments-from-code)
Open

module Meshchat
Severity: Minor
Found in lib/meshchat/ui/display/manager.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

There are no issues that match your filters.

Category
Status