Guardfile
Prefer single-quoted strings when you don't need string interpolation or special symbols. Open
Open
watch('spec/spec_helper.rb') { "spec" }
- Read upRead up
- Exclude checks
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"
Line is too long. [84/80] Open
Open
guard 'rspec', all_on_start: true, all_after_pass: true, cmd: 'bundle exec rspec' do
- Exclude checks