Sha256: a67e68592dd301e84c04cc6bb1e1d0483076fe7eb0d5ebe286a6734c73dee51c

Contents?: true

Size: 1.34 KB

Versions: 2

Compression:

Stored size: 1.34 KB

Contents

AllCops:
  TargetRubyVersion: 2.5
  Exclude:
    - spec/railsapps/**/*

Naming/FileName:
  Exclude:
    # This is named intentionally this way (the gem name), in case someone
    # includes it instead of "roadie/rails".
    - lib/roadie-rails.rb

Style/StringLiterals:
  EnforcedStyle: double_quotes

Style/TrailingCommaInHashLiteral:
  EnforcedStyleForMultiline: comma

Style/TrailingCommaInArguments:
  EnforcedStyleForMultiline: comma

Style/TrailingCommaInArrayLiteral:
  EnforcedStyleForMultiline: consistent_comma

Layout/SpaceInsideHashLiteralBraces:
  EnforcedStyle: no_space

Style/Documentation:
  Enabled: false

Layout/IndentArray:
  EnforcedStyle: consistent

Layout/MultilineMethodCallIndentation:
  EnforcedStyle: indented

Layout/EmptyLinesAroundAccessModifier:
  Enabled: false

Style/GuardClause:
  Enabled: false

Style/IfUnlessModifier:
  Enabled: false

Style/SignalException:
  Enabled: false

Style/BlockDelimiters:
  Enabled: true
  EnforcedStyle: braces_for_chaining
  Exclude:
    - 'spec/**/*'

Metrics/BlockLength:
  ExcludedMethods:
    - refine
    - describe
    - context
    - shared_examples
  Exclude:
    - 'Rakefile'
    - '**/*.rake'
    - 'spec/*_spec.rb'
    - 'spec/**/*_spec.rb'
    - 'spec/shared_examples/*.rb'

Metrics/LineLength:
  IgnoredPatterns:
    - '^\s*it\s' # Test names can be long
  Exclude:
    - roadie-rails.gemspec

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
roadie-rails-2.1.0 .rubocop.yml
roadie-rails-2.0.0 .rubocop.yml