Sha256: c78509c75a504dce2f40c388587fc31132d4e208120b75561dc8bd222b40e0fa

Contents?: true

Size: 831 Bytes

Versions: 2

Compression:

Stored size: 831 Bytes

Contents

require:
  - rubocop-rails
  - rubocop-rails-accessibility

# Config blocks can be very long
Metrics/BlockLength:
  Exclude:
    - 'config/**/*'

# casecmp does not work with all of Unicode, so this is not a good optimization for internationalized apps
Performance/Casecmp:
  Enabled: false

# This cop is unsafe because it has known compatibility issues with ActiveRecord and other frameworks.
Performance/Count:
  Enabled: false

# This cop is unsafe because it has known compatibility issues with ActiveRecord and other frameworks.
Performance/Detect:
  Enabled: false

# Sum is different between enumerables and ActiveRecord, let's not cause confusion...
Performance/Sum:
  Enabled: false

Style/Documentation:
  Exclude:
    - app/controllers/**/*
    - app/models/**/*
    - config/**/*
    - db/migrate/**/*
    - test/**/*

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
rubocop-rickselby-0.8.0 config/rails.yml
rubocop-rickselby-0.7.0 config/rails.yml