# Styles are inherited from Mad Rubocop inherit_gem: mad_rubocop: .rubocop.yml # Styles that are modified from the defaults AllCops: TargetRubyVersion: 2.3 Style/BlockDelimiters: Description: >- Avoid using {...} for multi-line blocks (multiline chaining is always ugly). Prefer {...} over do...end for single-line blocks. StyleGuide: 'https://git.moneydesktop.com/dev/ruby-style-guide#single-line-blocks' Exclude: - 'spec/**/*' Style/HashSyntax: Description: >- Prefer Ruby 1.8 hash syntax { :a => 1, :b => 2 } over 1.9 syntax { a: 1, b: 2 }. StyleGuide: 'https://git.moneydesktop.com/dev/ruby-style-guide#hash-literals' EnforcedStyle: hash_rockets Exclude: - 'Gemfile' Layout/SpaceAroundOperators: Exclude: - 'mx-aggregation_status.gemspec'