Sha256: 7d09b709e9df71eee6d8be121ef4e6ee3effb44f5dd6bbd2f163221c7c230938

Contents?: true

Size: 833 Bytes

Versions: 1

Compression:

Stored size: 833 Bytes

Contents

# https://rubocop.readthedocs.io/en/latest/configuration/#inheritance

# If you override a setting in a project's local .rubocop.yml file
# you must add the pre-existing exceptions found here as well.

AllCops:
  TargetRubyVersion: 2.3
  Exclude:
    - db/schema.rb

Rails:
  Enabled: true

Rails/NotNullColumn:
  Enabled: false

Rails/ReversibleMigration:
  Enabled: false

Rails/SkipsModelValidations:
  Exclude:
    - db/migrate/*.rb

Rails/Output:
  Exclude:
    - db/seeds.rb

Style/Documentation:
  Enabled: false

Metrics/MethodLength:
  Exclude:
    - db/migrate/*.rb
    - config/**/*.rb

Metrics/AbcSize:
  Exclude:
    - db/migrate/*.rb

Metrics/BlockLength:
  Exclude:
    - "*.gemspec"
    - spec/**/*.rb
    - lib/tasks/*.rake
    - config/**/*.rb
    - db/**/*.rb

Metrics/LineLength:
  Exclude:
    - db/migrate/*.rb

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
aaf-gumboot-1.1.0 aaf-rubocop.yml