class RuboCop::Cop::Layout::InitialIndentation

Checks for indentation of the first non-blank non-comment line in a file.

@example

# bad
   class A
     def foo; end
   end

# good
class A
  def foo; end
end