wahanegi/vibereport

View on GitHub
app/models/shoutout.rb

Summary

Maintainability
A
0 mins
Test Coverage

1 trailing blank lines detected.
Open

Severity: Minor
Found in app/models/shoutout.rb by rubocop

Looks for trailing blank lines and a final newline in the source code.

Example: EnforcedStyle: final_newline (default)

# `final_newline` looks for one newline at the end of files.

# bad
class Foo; end

# EOF

# bad
class Foo; end # EOF

# good
class Foo; end
# EOF

Example: EnforcedStyle: finalblankline

# `final_blank_line` looks for one blank line followed by a new line
# at the end of files.

# bad
class Foo; end
# EOF

# bad
class Foo; end # EOF

# good
class Foo; end

# EOF

There are no issues that match your filters.

Category
Status