lib/tasks/releaser.rake
Add an empty line after magic comments. Open
Open
desc 'Bumps the version to the next patch level, tags and pushes the code to
- Read upRead up
- Exclude checks
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