Sha256: e99db825b15af0cb6592d854000edaa9bb736a2a9f80966947dc35c501b730ca

Contents?: true

Size: 1.96 KB

Versions: 10

Compression:

Stored size: 1.96 KB

Contents

AllCops:
  Include:
    - Gemfile
    - Rakefile
    - bin/*
    - agile_utils.gemspec
    - lib/**/*.rb
    - test/**/*.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

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

# Do not force public/protected/private keyword to be indented at the same
# level as the def keyword. My personal preference is to outdent these keywords
# because I think when scanning code it makes it easier to identify the
# sections of code and visually separate them. When the keyword is at the same
# level I think it sort of blends in with the def keywords and makes it harder
# to scan the code and see where the sections are.
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

# Enforce outdenting of access modifiers (i.e. public, private, protected)
AccessModifierIndentation:
  EnforcedStyle: outdent

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

10 entries across 10 versions & 1 rubygems

Version Path
agile_utils-0.3.2 .rubocop.yml
agile_utils-0.3.1 .rubocop.yml
agile_utils-0.3.0 .rubocop.yml
agile_utils-0.2.3 .rubocop.yml
agile_utils-0.2.2 .rubocop.yml
agile_utils-0.2.1 .rubocop.yml
agile_utils-0.2.0 .rubocop.yml
agile_utils-0.1.5 .rubocop.yml
agile_utils-0.1.4 .rubocop.yml
agile_utils-0.1.3 .rubocop.yml