Sha256: 725f9dee6cc0c22f91c97e19048ab3223694139794032c076974ccb98d771aa8

Contents?: true

Size: 1.29 KB

Versions: 4

Compression:

Stored size: 1.29 KB

Contents

AllCops:
  Include:
    - Gemfile
    - Rakefile
    - bin/*
    - index_html.gemspec
    - lib/**/*.rb
    - spec/index_html/**/*.rb
    - spec/spec_helper.rb
# Avoid long parameter lists
ParameterLists:
  Max: 5
  CountKeywordArgs: true

MethodLength:
  CountComments: false
  Max: 15

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

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

# 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

4 entries across 4 versions & 1 rubygems

Version Path
index_html-0.2.5 .rubocop.yml
index_html-0.2.4 .rubocop.yml
index_html-0.2.3 .rubocop.yml
index_html-0.2.2 .rubocop.yml