Ignoring rubocop rules for Ruby 3.

This commit is contained in:
James Mason 2018-02-23 11:57:26 -08:00
parent 137d997793
commit d41258bb90
No known key found for this signature in database
GPG key ID: 1B3951886C449023
2 changed files with 10 additions and 0 deletions

View file

@ -3,6 +3,7 @@ inherit_from: .rubocop_todo.yml
# Apply rule to all cops
AllCops:
TargetRubyVersion: 2.4
Include:
- '**/Rakefile'
- '**/config.ru'

View file

@ -714,3 +714,12 @@ Style/TrailingCommaInLiteral:
- 'Guardfile'
- 'db/migrate/20140701123203_add_events_per_week_to_conference.rb'
- 'spec/models/conference_spec.rb'
# for ruby 3.0
Style/FrozenStringLiteralComment:
Enabled: false
Style/NumericPredicate:
Enabled: false
Style/SafeNavigation:
Enabled: false