znamenica/dneslov

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

Summary

Maintainability
A
0 mins
Test Coverage
F
0%

Space missing after semicolon.
Open

class Title < Description ;end
Severity: Minor
Found in app/models/descriptions/title.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 Title < Description ;end
Severity: Minor
Found in app/models/descriptions/title.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