Sha256: 0be514782eceb4a5d9d4c919b0a7cd4990268cb0d4e5db1838914088a29a8cf1
Contents?: true
Size: 751 Bytes
Versions: 7
Compression:
Stored size: 751 Bytes
Contents
# Ruby version AllCops: TargetRubyVersion: 2.2 Exclude: - 'old/**/*' # Disable line-length check; it's too easy for the cure to be worse than the disease Metrics/LineLength: Enabled: False # Disable problematic module documentation check (see https://github.com/bbatsov/rubocop/issues/947) Style/Documentation: Enabled: false # Allow one line around class body (Style/EmptyLines will still disallow two or more) Style/EmptyLinesAroundClassBody: Enabled: false # Allow one line around module body (Style/EmptyLines will still disallow two or more) Style/EmptyLinesAroundModuleBody: Enabled: false # Allow one line around block body (Style/EmptyLines will still disallow two or more) Style/EmptyLinesAroundBlockBody: Enabled: false
Version data entries
7 entries across 7 versions & 1 rubygems