Sha256: 965de7e08e7f44f741b99636994bb959acfedf06543d0d0ef56c4b5197798167

Contents?: true

Size: 1.14 KB

Versions: 5

Compression:

Stored size: 1.14 KB

Contents

inherit_from:
  - http://relaxed.ruby.style/rubocop.yml

require: 
  - rubocop-performance

AllCops:
  NewCops: enable
  DisplayStyleGuide: true
  DisplayCopNames: true
  Exclude:
    - 'db/schema.rb'

Style/GlobalVars:
  Enabled: false

Layout/DotPosition:
  Enabled: true
  EnforcedStyle: trailing

Style/TrailingCommaInArrayLiteral:
  Enabled: true
  EnforcedStyleForMultiline: comma

Style/TrailingCommaInHashLiteral:
  Enabled: true
  EnforcedStyleForMultiline: comma

Layout/MultilineArrayLineBreaks:
  Enabled: true

Layout/MultilineHashKeyLineBreaks:
  Enabled: true

Layout/MultilineMethodArgumentLineBreaks:
  Enabled: true

Layout/FirstArrayElementLineBreak:
  Enabled: true

Layout/FirstHashElementLineBreak:
  Enabled: true

Layout/FirstMethodArgumentLineBreak:
  Enabled: true

Layout/MultilineAssignmentLayout:
  Enabled: true

Layout/LineLength:
  Enabled: true
  Max: 120
  AutoCorrect: true
  Exclude:
    - Gemfile
    - Guardfile
    - spec/interactors/send_gdpr_response_spec.rb

Metrics/BlockLength:
  Exclude:
    - 'spec/**/*.rb'
    - 'Guardfile'
    - 'config/environments/*.rb'
    - 'lib/tasks/*.rake'
    - 'shotgun_api_ruby.gemspec'

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
shotgun_api_ruby-0.0.5.3 .rubocop.yml
shotgun_api_ruby-0.0.5.2 .rubocop.yml
shotgun_api_ruby-0.0.5.1 .rubocop.yml
shotgun_api_ruby-0.0.5 .rubocop.yml
shotgun_api_ruby-0.0.4.1 .rubocop.yml