Sha256: 3fe6e8d485670bdd334f413b9d0b1008e299ccf1220b71e4801b00b3a29a8cd5

Contents?: true

Size: 1.05 KB

Versions: 6

Compression:

Stored size: 1.05 KB

Contents

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

AllCops:
  ActiveSupportExtensionsEnabled: true

# 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

Rails/DefaultScope:
  Enabled: true

Rails/EnvironmentVariableAccess:
  Enabled: true

Rails/OrderById:
  Enabled: true

Rails/PluckId:
  Enabled: true

Rails/TableNameAssignment:
  Enabled: true

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

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
rubocop-rickselby-0.14.0 config/rails.yml
rubocop-rickselby-0.14.0.pre.4 config/rails.yml
rubocop-rickselby-0.14.0.pre.3 config/rails.yml
rubocop-rickselby-0.14.0.pre.2 config/rails.yml
rubocop-rickselby-0.14.0.pre.1 config/rails.yml
rubocop-rickselby-0.13.0 config/rails.yml