voxable-labs/hg

View on GitHub
hg.gemspec

Summary

Maintainability
Test Coverage

TODO found
Open

  # TODO: Add description
Severity: Minor
Found in hg.gemspec by fixme

TODO found
Open

  # TODO: Drop Hashie
Severity: Minor
Found in hg.gemspec by fixme

Put a space before an end-of-line comment.
Open

  spec.add_runtime_dependency 'api-ai-ruby'#, '~> 1.2.3'
Severity: Minor
Found in hg.gemspec by rubocop

This cop checks for missing space between a token and a comment on the same line.

Example:

# bad
1 + 1# this operation does ...

# good
1 + 1 # this operation does ...

Missing space after #. (https://github.com/voxable-labs/voxable-style-guide#hash-space)
Open

  spec.add_runtime_dependency 'api-ai-ruby'#, '~> 1.2.3'
Severity: Minor
Found in hg.gemspec by rubocop

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

Avoid trailing inline comments.
Open

  spec.add_runtime_dependency 'api-ai-ruby'#, '~> 1.2.3'
Severity: Minor
Found in hg.gemspec by rubocop

This cop checks for trailing inline comments.

Example:

# good
foo.each do |f|
  # Standalone comment
  f.bar
end

# bad
foo.each do |f|
  f.bar # Trailing inline comment
end

There are no issues that match your filters.

Category
Status