Sha256: bbff49b5b0c48f219ae9af17f17999a5b9af480bc89259d99e6c98cd0c993c95

Contents?: true

Size: 1.42 KB

Versions: 6

Compression:

Stored size: 1.42 KB

Contents

AllCops:
  Include:
    - Gemfile
    - Rakefile
    - bin/*
    - lib/**/*.rb
    - test/**/*.rb
  Exclude:
    - pdfs2pdf.gemspec
# Avoid long parameter lists
ParameterLists:
  Max: 5
  CountKeywordArgs: true

MethodLength:
  CountComments: false
  Max: 15

# Avoid more than `Max` levels of nesting.
BlockNesting:
  Max: 4

# Align with the style guide.
CollectionMethods:
  PreferredMethods:
    collect:  'map'
    inject:   'reduce'
    find:     'detect'
    find_all: 'select'

AccessModifierIndentation:
  Enabled: false

# Limit line length
LineLength:
  Enabled: false

# Disable documentation checking until a class needs to be documented once
Documentation:
  Enabled: false

# Enforce Ruby 1.8-compatible hash syntax
HashSyntax:
  Enabled: true

# No spaces inside hash literals
SpaceInsideHashLiteralBraces:
  EnforcedStyle: space

# Allow dots at the end of lines
DotPosition:
  Enabled: false

# Don't require magic comment at the top of every file
Encoding:
  Enabled: false

EmptyLinesAroundAccessModifier:
  Enabled: true

# Align ends correctly
EndAlignment:
  AlignWith: variable

# Indentation of when/else
CaseIndentation:
  IndentWhenRelativeTo: end
  IndentOneStep: false

DoubleNegation:
  Enabled: false

PercentLiteralDelimiters:
  PreferredDelimiters:
    '%':  ()
    '%i': ()
    '%q': ()
    '%Q': ()
    '%r': '{}'
    '%s': ()
    '%w': '[]'
    '%W': '[]'
    '%x': ()

StringLiterals:
  EnforcedStyle: double_quotes

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
pdfs2pdf-0.2.5 .rubocop.yml
pdfs2pdf-0.2.4 .rubocop.yml
pdfs2pdf-0.2.3 .rubocop.yml
pdfs2pdf-0.2.2 .rubocop.yml
pdfs2pdf-0.2.1 .rubocop.yml
pdfs2pdf-0.2.0 .rubocop.yml