Sha256: a16f8526b62ad4123a9adcf4924222da2e09368aef90f793292074ae0e2f2189

Contents?: true

Size: 1.25 KB

Versions: 3

Compression:

Stored size: 1.25 KB

Contents

---
AllCops:
  Exclude:
    - '*.gemspec'
    - 'spec/**/*'

Performance/RegexpMatch:
  Enabled: false # match? is only available in Ruby 2.4+

Style/TrailingCommaInArguments:
  EnforcedStyleForMultiline: no_comma
  Enabled: true

StringLiterals:
  EnforcedStyle: single_quotes
  Enabled: true

LineLength:
  Max: 120
  Exclude:
    - 'spec/**/*'

MethodLength:
  Max: 12

DotPosition:
  Description: 'Checks the position of the dot in multi-line method calls.'
  EnforcedStyle: leading
  Enabled: true

ClassAndModuleChildren:
  Description: 'Checks style of children classes and modules.'
  EnforcedStyle: nested
  Enabled: true

Documentation:
  Description: 'Document classes and non-namespace modules.'
  Enabled: false

FileName:
  Description: 'Use snake_case for source file names.'
  Enabled: true

Style/SymbolArray:
  Description: 'Use %i or %I for arrays of symbols.'
  StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#percent-i'
  Enabled: false # Only available in Ruby 2.0+

Style/ExtraSpacing:
  Description: 'Do not use unnecessary spacing.'
  Enabled: true

Lint/LiteralInInterpolation:
  Description: 'Avoid interpolating literals in strings'
  AutoCorrect: true

Metrics/ClassLength:
  CountComments: false  # count full line comments?
  Max: 200

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
url_canonicalize-0.1.15 .rubocop.yml
url_canonicalize-0.1.14 .rubocop.yml
url_canonicalize-0.1.13 .rubocop.yml