Sha256: 0776fabe4004393c1801f3741ed163a2aa65dd960e4eceab05587afeda8f5dd4

Contents?: true

Size: 1.83 KB

Versions: 6

Compression:

Stored size: 1.83 KB

Contents

# http://www.rubydoc.info/gems/rubocop/0.36.0/RuboCop/Cop/Style/

AbcSize:
  Enabled: false
AlignParameters:
  EnforcedStyle: with_fixed_indentation
ClassLength:
  # It's not worth bending over backwards to avoid long classes.
  Enabled: false
CollectionMethods:
  PreferredMethods:
    collect: 'map'
    reduce: 'inject'
    detect: 'find'
    find_all: 'select'
CommandLiteral:
  EnforcedStyle: percent_x
CommentAnnotation:
  Enabled: false
ConditionalAssignment:
  Enabled: false
CyclomaticComplexity:
  Enabled: false
Documentation:
  # TODO: We need to add a bunch of docs before we can enable this.
  Enabled: false
EmptyLinesAroundAccessModifier:
  Enabled: false
GuardClause:
  Enabled: false
HashSyntax:
  EnforcedStyle: hash_rockets
IfUnlessModifier:
  Enabled: false
LineLength:
  Enabled: true
  Max: 100
MethodLength:
  Enabled: false
ModuleFunction:
  # The module_function declaration makes methods private so it means you can't use the module as a module.
  Enabled: false
ModuleLength:
  Enabled: false
NegatedWhile:
  Enabled: false
NumericLiterals:
  Enabled: false
ParenthesesAroundCondition:
  AllowSafeAssignment: false
PerceivedComplexity:
  Enabled: false
PerlBackrefs:
  Enabled: false
RaiseArgs:
  EnforcedStyle: compact
RedundantReturn:
  AllowMultipleReturnValues: true
RegexpLiteral:
  Enabled: false
SignalException:
  EnforcedStyle: only_raise
SpaceAroundEqualsInParameterDefault:
  EnforcedStyle: no_space
SpaceInsideHashLiteralBraces:
  EnforcedStyle: space
StringLiterals:
  # They say to not use double quoted strings unless there is interpolation.
  # While this gives a marginal parse time speedup, it makes working with
  # strings annoying.
  Enabled: false
TrailingCommaInArguments:
  Enabled: false
TrailingCommaInLiteral:
  EnforcedStyleForMultiline: comma
TrivialAccessors:
  Enabled: false
WhileUntilModifier:
  Enabled: false

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
hawkins-2.0.5 .rubocop.yml
hawkins-2.0.4 .rubocop.yml
hawkins-2.0.3 .rubocop.yml
hawkins-2.0.2 .rubocop.yml
hawkins-2.0.1 .rubocop.yml
hawkins-2.0.0 .rubocop.yml