magiclabs/alchemy-usermanual

View on GitHub
lib/alchemy/user_manual/creator.rb

Summary

Maintainability
A
0 mins
Test Coverage

Indent access modifiers like private.
Open

    private
Severity: Minor
Found in lib/alchemy/user_manual/creator.rb by rubocop

Modifiers should be indented as deep as method definitions, or as deep as the class/module keyword, depending on configuration.

Example: EnforcedStyle: indent (default)

# bad
class Plumbus
private
  def smooth; end
end

# good
class Plumbus
  private
  def smooth; end
end

Example: EnforcedStyle: outdent

# bad
class Plumbus
  private
  def smooth; end
end

# good
class Plumbus
private
  def smooth; end
end

There are no issues that match your filters.

Category
Status