Fix Rubocop offences

#790
This commit is contained in:
Artur Beljajev 2018-04-08 19:07:16 +03:00
parent 454ce4874b
commit 9bf1a7a06b
2 changed files with 4 additions and 1 deletions

View file

@ -2,3 +2,5 @@ inherit_from: .rubocop_todo.yml
Style/Alias:
EnforcedStyle: prefer_alias_method
Style/TrailingCommaInLiteral:
EnforcedStyleForMultiline: consistent_comma

View file

@ -1,3 +1,4 @@
class QueJob < ActiveRecord::Base # To be able to remove existing jobs
# To be able to remove existing jobs
class QueJob < ActiveRecord::Base
self.primary_key = 'job_id'
end