codus/codelog

View on GitHub

Showing 1 of 2 total issues

Prefer single-quoted strings when you don't need string interpolation or special symbols.
Open

        puts "The CHANGELOG was regenerated successfully!"
Severity: Minor
Found in lib/codelog/command/regenerate.rb by rubocop

Checks if uses of quotes match the configured preference.

Example: EnforcedStyle: single_quotes (default)

# bad
"No special symbols"
"No string interpolation"
"Just text"

# good
'No special symbols'
'No string interpolation'
'Just text'
"Wait! What's #{this}!"

Example: EnforcedStyle: double_quotes

# bad
'Just some text'
'No special chars or interpolation'

# good
"Just some text"
"No special chars or interpolation"
"Every string in #{project} uses double_quotes"
Severity
Category
Status
Source
Language