znamenica/dneslov

View on GitHub
app/models/links/coord_link.rb

Summary

Maintainability
A
0 mins
Test Coverage
F
0%

Extra empty line detected at class body end.
Open


   belongs_to :info, inverse_of: :coordinate, polymorphic: true ;end
Severity: Minor
Found in app/models/links/coord_link.rb by rubocop

This cops checks if empty lines around the bodies of classes match the configuration.

Example: EnforcedStyle: empty_lines

# good

class Foo

  def bar
    # ...
  end

end

Example: EnforcedStyle: emptylinesexcept_namespace

# good

class Foo
  class Bar

    # ...

  end
end

Example: EnforcedStyle: emptylinesspecial

# good
class Foo

  def bar; end

end

Example: EnforcedStyle: noemptylines (default)

# good

class Foo
  def bar
    # ...
  end
end

Space missing after semicolon.
Open

   belongs_to :info, inverse_of: :coordinate, polymorphic: true ;end
Severity: Minor
Found in app/models/links/coord_link.rb by rubocop

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

Example:

# bad
x = 1;y = 2

# good
x = 1; y = 2

end at 4, 65 is not aligned with class at 1, 0.
Open

   belongs_to :info, inverse_of: :coordinate, polymorphic: true ;end
Severity: Minor
Found in app/models/links/coord_link.rb by rubocop

This cop checks whether the end keywords are aligned properly.

Three modes are supported through the EnforcedStyleAlignWith configuration parameter:

If it's set to keyword (which is the default), the end shall be aligned with the start of the keyword (if, class, etc.).

If it's set to variable the end shall be aligned with the left-hand-side of the variable assignment, if there is one.

If it's set to start_of_line, the end shall be aligned with the start of the line where the matching keyword appears.

Example: EnforcedStyleAlignWith: keyword (default)

# bad

variable = if true
    end

# good

variable = if true
           end

Example: EnforcedStyleAlignWith: variable

# bad

variable = if true
    end

# good

variable = if true
end

Example: EnforcedStyleAlignWith: startofline

# bad

variable = if true
    end

# good

puts(if true
end)

Space found before semicolon.
Open

   belongs_to :info, inverse_of: :coordinate, polymorphic: true ;end
Severity: Minor
Found in app/models/links/coord_link.rb by rubocop

Checks for semicolon (;) preceded by space.

Example:

# bad
x = 1 ; y = 2

# good
x = 1; y = 2

Missing top-level class documentation comment.
Open

class CoordLink < Link
Severity: Minor
Found in app/models/links/coord_link.rb by rubocop

This cop checks for missing top-level documentation of classes and modules. Classes with no body are exempt from the check and so are namespace modules - modules that have nothing in their bodies except classes, other modules, or constant definitions.

The documentation requirement is annulled if the class or module has a "#:nodoc:" comment next to it. Likewise, "#:nodoc: all" does the same for all its children.

Example:

# bad
class Person
  # ...
end

# good
# Description/Explanation of Person class
class Person
  # ...
end

There are no issues that match your filters.

Category
Status