Sha256: 296cdfd2acea5a356c8ddc9cc48b367f8e65f7e249093f1a03077261803101f5

Contents?: true

Size: 1.2 KB

Versions: 1

Compression:

Stored size: 1.2 KB

Contents

AllCops:
  Includes:
    - '**/*.rake'
    - 'Guardfile'
    - 'Rakefile'
    - 'Gemfile'
    - 'Gemfile.devtools'
  Excludes:
    - !ruby/regexp /spec\/setup/

# 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'

SignalException:
  # Valid values are: semantic, only_raise and only_fail
  EnforcedStyle: only_raise

# Limit line length
LineLength:
  Max: 120

# 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

RegexpLiteral:
  Enabled: false

StringLiterals:
  EnforcedStyle: single_quotes

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
guacamole-0.3.0 .hound.yml