Sha256: 6a33b872b8203a24d714fb292894453aef8c168b48bbe415a022410f57b2d0be

Contents?: true

Size: 866 Bytes

Versions: 4

Compression:

Stored size: 866 Bytes

Contents

require:
  - 'rubocop-performance'
  - 'rubocop-rails'
  - 'rubocop-minitest'
  - 'rubocop-rake'

AllCops:
  NewCops: enable
  # Don't run rubocop on these files/directories
  Exclude:
    - '**/templates/**/*'
    - '**/vendor/**/*'
    - 'lib/templates/**/*'
    - 'db/**/*'
    - 'config/**/*'
    - 'vendor/**/*'
    - 'bin/**/*'
    - 'test/dummy/**/*'

Layout/LineLength:
  Max: 80
  Exclude:
    - 'bellman.gemspec'

Metrics/AbcSize:
  Max: 30
  Exclude:
    - 'test/**/*'

Metrics/BlockLength:
  Max: 40
  Exclude:
    - 'bellman.gemspec'
    - 'test/**/*'

Metrics/ClassLength:
  Max: 150
  Exclude:
    - 'test/**/*'

Metrics/MethodLength:
  Max: 35
  Exclude:
    - 'test/**/*'

Metrics/ModuleLength:
  Max: 100

Minitest/MultipleAssertions:
  Max: 10

Rails/RakeEnvironment:
  Exclude:
    - 'Rakefile'

Rails/RefuteMethods:
  Exclude:
    - 'test/**/*'

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
bellman-0.2.0 .rubocop.yml
bellman-0.1.2 .rubocop.yml
bellman-0.1.1 .rubocop.yml
bellman-0.1.0 .rubocop.yml