johnallen3d
6/17/2014 - 5:57 PM

Connexio Labs Standard Rubocop Config

Connexio Labs Standard Rubocop Config

AllCops:
  Excludes:
    - vendor/**
    - bin/**
    - config/puma*

Documentation:
  # don't require classes to be documented
  Enabled: false

Encoding:
  # no need to always specify encoding
  Enabled: false

LineLength:
  # just one more character please
  Max: 80

AlignParameters:
  # allow for multi-line methods to have normal indentation
  EnforcedStyle: with_fixed_indentation

ClassAndModuleChildren:
  # ok to use compact style when modules are predefined
  Enabled: false