Sha256: 5eb991e9ad90342c4f7267c5a567dc0b6bcd3633fff3bf2594ed2fde61afc5c2

Contents?: true

Size: 1.46 KB

Versions: 25

Compression:

Stored size: 1.46 KB

Contents

AllCops:
  Includes:
    - '**/*.rake'
    - 'Gemfile'
    - 'Gemfile.devtools'
  Excludes:
    - '**/vendor/**'
    - '**/benchmarks/**'

# Avoid parameter lists longer than five parameters.
ParameterLists:
  Max: 3
  CountKeywordArgs: true

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

# 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.
AccessControl:
  Enabled: false

# Limit line length
LineLength:
  Max: 79

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

# Do not favor modifier if/unless usage when you have a single-line body
IfUnlessModifier:
  Enabled: false

# Allow case equality operator (in limited use within the specs)
CaseEquality:
  Enabled: false

# Constants do not always have to use SCREAMING_SNAKE_CASE
ConstantName:
  Enabled: false

# Not all trivial readers/writers can be defined with attr_* methods
TrivialAccessors:
  Enabled: false

Version data entries

25 entries across 25 versions & 7 rubygems

Version Path
analects-0.4.2 config/rubocop.yml
analects-0.4.1 config/rubocop.yml
analects-0.4.0 config/rubocop.yml
analects-0.3.1 config/rubocop.yml
analects-0.2.1 config/rubocop.yml
analects-0.2.0 config/rubocop.yml
charlatan-0.1.0 config/rubocop.yml
charlatan-0.0.1 config/rubocop.yml
promise.rb-0.3.0 config/rubocop.yml
mashery_rails-0.6.9.pre4 config/rubocop.yml
mashery_rails-0.6.9.pre3 config/rubocop.yml
promise.rb-0.2.1 config/rubocop.yml
mashery_rails-0.6.9.pre1 config/rubocop.yml
mashery_rails-0.6.8 config/rubocop.yml
promise.rb-0.2.0 config/rubocop.yml
descendants_tracker-0.0.3 config/rubocop.yml
descendants_tracker-0.0.2 config/rubocop.yml
mashery_rails-0.6.7 config/rubocop.yml
mashery_rails-0.6.6 config/rubocop.yml
mashery_rails-0.6.3 config/rubocop.yml