Sha256: d58f9781a3ce58e63315d9121d277a880adb2f33b5d0e01a82c8047aaae0aa79

Contents?: true

Size: 1.16 KB

Versions: 6

Compression:

Stored size: 1.16 KB

Contents

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

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: 150

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
url_canonicalize-0.1.4 .rubocop.yml
url_canonicalize-0.1.2 .rubocop.yml
url_canonicalize-0.1.1 .rubocop.yml
url_canonicalize-0.1.0 .rubocop.yml
url_canonicalize-0.0.7 .rubocop.yml
url_canonicalize-0.0.6 .rubocop.yml