Pattern: Unnecessary leading empty line
Issue: -
This rule checks for unnecessary leading empty lines at the beginning of a file.
# bad
# (start of file)
class Foo
end
# bad
# (start of file)
# a comment
# good
# (start of file)
class Foo
end
# good
# (start of file)
# a comment