Sha256: c4273e1f03485fa77e38b9c558c8df5a6bcd480fc2a9310f2a17bea597ce830b
Contents?: true
Size: 862 Bytes
Versions: 6
Compression:
Stored size: 862 Bytes
Contents
# 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'
Version data entries
6 entries across 6 versions & 1 rubygems