grokify/lita_dotenv

View on GitHub
lita_dotenv.gemspec

Summary

Maintainability
Test Coverage

%q-literals should be delimited by ( and ).
Open

  spec.description   = %q{A Lita .env config loader.}
Severity: Minor
Found in lita_dotenv.gemspec by rubocop

This cop enforces the consistent usage of %-literal delimiters.

Specify the 'default' key to set all preferred delimiters at once. You can continue to specify individual preferred delimiters to override the default.

Example:

# Style/PercentLiteralDelimiters:
#   PreferredDelimiters:
#     default: '[]'
#     '%i':    '()'

# good
%w[alpha beta] + %i(gamma delta)

# bad
%W(alpha #{beta})

# bad
%I(alpha beta)

Use %q only for strings that contain both single quotes and double quotes.
Open

  spec.summary       = %q{A Lita .env config loader that loads ENV values directly into Lita's configuration.}
Severity: Minor
Found in lita_dotenv.gemspec by rubocop

Use %q only for strings that contain both single quotes and double quotes.
Open

  spec.description   = %q{A Lita .env config loader.}
Severity: Minor
Found in lita_dotenv.gemspec by rubocop

Line is too long. [110/80]
Open

  spec.summary       = %q{A Lita .env config loader that loads ENV values directly into Lita's configuration.}
Severity: Minor
Found in lita_dotenv.gemspec by rubocop

%q-literals should be delimited by ( and ).
Open

  spec.summary       = %q{A Lita .env config loader that loads ENV values directly into Lita's configuration.}
Severity: Minor
Found in lita_dotenv.gemspec by rubocop

This cop enforces the consistent usage of %-literal delimiters.

Specify the 'default' key to set all preferred delimiters at once. You can continue to specify individual preferred delimiters to override the default.

Example:

# Style/PercentLiteralDelimiters:
#   PreferredDelimiters:
#     default: '[]'
#     '%i':    '()'

# good
%w[alpha beta] + %i(gamma delta)

# bad
%W(alpha #{beta})

# bad
%I(alpha beta)

There are no issues that match your filters.

Category
Status