Sha256: f953f640539ffe410bfb2251dca360653476a6c00fb4548b1e0b45ed9a01d0ba

Contents?: true

Size: 486 Bytes

Versions: 3

Compression:

Stored size: 486 Bytes

Contents

###########################
# Configuration for rubocop
# in .rubocop.yml

##############
# Global rules
# see .rubocop_common.yml

##############
# Inherit default rules first, and then override those rules with
# our violation whitelist.
inherit_from:
  - .rubocop_common.yml

AllCops:
  Exclude:
    - db/**/*

Rails:
  Enabled: false

Style/SymbolArray:
  EnforcedStyle: brackets

Metrics/LineLength:
  Max: 100

Metrics/BlockLength:
  Exclude:
   - '*.gemspec'
   - 'spec/**/*.rb'

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
rubocop_rules-1.1.2 .rubocop.yml
rubocop_rules-1.1.1 .rubocop.yml
rubocop_rules-1.1.0 .rubocop.yml