Sha256: 84ddd96540a6b231cc98afea1d1ee561420836787c226c9625295e384b2fdee3

Contents?: true

Size: 857 Bytes

Versions: 4

Compression:

Stored size: 857 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/**/*'
    - 'actionpack/lib/action_dispatch/journey/parser.rb'
    - 'lib/templates/**/*'
    - 'db/**/*'
    - 'config/**/*'
    - 'vendor/**/*'
    - 'bin/**/*'

Layout/LineLength:
  Max: 80

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

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

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

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

Metrics/ModuleLength:
  Max: 100
  Exclude:
    - 'lib/schnecke/schnecke.rb'

Minitest/MultipleAssertions:
  Max: 10

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

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
schnecke-0.5.0 .rubocop.yml
schnecke-0.4.5 .rubocop.yml
schnecke-0.4.4 .rubocop.yml
schnecke-0.4.3 .rubocop.yml