znamenica/dneslov

View on GitHub
app/models/scriptum/cantoes/canticle.rb

Summary

Maintainability
A
0 mins
Test Coverage

Unnecessary spacing detected.
Open

   validates :prosomeion_title, absence: true, if: ->{ true }  # TODO validate why fails on descendants

This cop checks for extra/unnecessary whitespace.

Example:

# good if AllowForAlignment is true
name      = "RuboCop"
# Some comment and an empty line

website  += "/bbatsov/rubocop" unless cond
puts        "rubocop"          if     debug

# bad for any configuration
set_app("RuboCop")
website  = "https://github.com/bbatsov/rubocop"

Missing space after #.
Open

   validates :prosomeion_title, absence: true, if: ->{ true }  # TODO validate why fails on descendants

This cop checks whether comments have a leading space after the # denoting the start of the comment. The leading space is not required for some RDoc special syntax, like #++, #--, #:nodoc, =begin- and =end comments, "shebang" directives, or rackup options.

Example:

# bad
#Some comment

# good
# Some comment

Space missing to the left of {.
Open

   validates :tone, inclusion: { in: 1..8 }, if: ->{ tone.present? }

Checks that block braces have or don't have a space before the opening brace depending on configuration.

Example:

# bad
foo.map{ |a|
  a.bar.to_s
}

# good
foo.map { |a|
  a.bar.to_s
}

Missing top-level class documentation comment.
Open

class Canticle < Canto

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

Space missing to the left of {.
Open

   validates :prosomeion_title, absence: true, if: ->{ true }  # TODO validate why fails on descendants

Checks that block braces have or don't have a space before the opening brace depending on configuration.

Example:

# bad
foo.map{ |a|
  a.bar.to_s
}

# good
foo.map { |a|
  a.bar.to_s
}

Use only ascii symbols in comments.
Open

   validates :prosomeion_title, absence: true, if: ->{ true }  # TODO validate why fails on descendants

This cop checks for non-ascii (non-English) characters in comments. You could set an array of allowed non-ascii chars in AllowedChars attribute (empty by default).

Example:

# bad
# Translates from English to 日本語。

# good
# Translates from English to Japanese

There are no issues that match your filters.

Category
Status