znamenica/dneslov

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

Summary

Maintainability
A
0 mins
Test Coverage
A
100%

Space found before semicolon.
Open

class Appellation < Description ;end

Checks for semicolon (;) preceded by space.

Example:

# bad
x = 1 ; y = 2

# good
x = 1; y = 2

Space missing after semicolon.
Open

class Appellation < Description ;end

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

Example:

# bad
x = 1;y = 2

# good
x = 1; y = 2

There are no issues that match your filters.

Category
Status