Sha256: 6ed768043460be6b2a3bfe58952cc667219ade4d342c8f3c46736f3abaca09a6

Contents?: true

Size: 976 Bytes

Versions: 3

Compression:

Stored size: 976 Bytes

Contents

AllCops:
  TargetRubyVersion: 2.3
  UseCache: false
  DisplayCopNames: true

Metrics/LineLength:
  Max: 100
  # To make it possible to copy or click on URIs in the code, we allow lines
  # contaning a URI to be longer than Max.
  AllowURI: true
  URISchemes:
    - http
    - https
  Enabled: true

Metrics/AbcSize:
  Max: 30

Metrics/MethodLength:
  Max: 25

Metrics/BlockLength:
  Exclude:
    - "spec/**/*.*"
    - "*.gemspec"

Lint/HandleExceptions:
  Exclude:
    - "spec/**/*.*"

Style/TrailingCommaInArguments:
  Description: 'Checks for trailing comma in argument lists.'
  StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-trailing-params-comma'
  Enabled: true
  EnforcedStyleForMultiline: consistent_comma

Style/TrailingCommaInLiteral:
  Description: 'Checks for trailing comma in array and hash literals.'
  StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-trailing-array-commas'
  Enabled: true
  EnforcedStyleForMultiline: consistent_comma

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
after_commit_everywhere-0.1.2 .rubocop.yml
after_commit_everywhere-0.1.1 .rubocop.yml
after_commit_everywhere-0.1.0 .rubocop.yml