znamenica/dneslov

View on GitHub
app/models/descriptions/tweet.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%

Space missing after semicolon.
Open

class Tweet < Description ;end
Severity: Minor
Found in app/models/descriptions/tweet.rb by rubocop

Checks for semicolon (;) not followed by some kind of space.

Example:

# bad
x = 1;y = 2

# good
x = 1; y = 2

Space found before semicolon.
Open

class Tweet < Description ;end
Severity: Minor
Found in app/models/descriptions/tweet.rb by rubocop

Checks for semicolon (;) preceded by space.

Example:

# bad
x = 1 ; y = 2

# good
x = 1; y = 2

There are no issues that match your filters.

Category
Status