znamenica/dneslov

View on GitHub
app/policies/subject_policy.rb

Summary

Maintainability
A
0 mins
Test Coverage
F
0%

Space missing after semicolon.
Open

class SubjectPolicy < CommonPolicy ;end
Severity: Minor
Found in app/policies/subject_policy.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 SubjectPolicy < CommonPolicy ;end
Severity: Minor
Found in app/policies/subject_policy.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