aboutsummaryrefslogblamecommitdiffstats
path: root/.rubocop.yml
blob: de355eeb13159bddcccfda409e16aadbae9958c3 (plain) (tree)


























                                                                        












                                 
AllCops:
  TargetRubyVersion: 2.3
  DisabledByDefault: true

# Two spaces, no tabs (for indentation).
Style/IndentationWidth:
  enabled: true

# No trailing whitespace.
Style/TrailingWhitespace:
  enabled: true

# Blank lines should not have any spaces.
Style/TrailingBlankLines:
  enabled: true

# Use Ruby >= 1.9 syntax for hashes. Prefer { a: :b } over { :a => :b }.
Style/HashSyntax:
  enabled: true

# Prefer &&/|| over and/or.
Style/AndOr:
  enabled: true

# Use my_method(my_arg) not my_method( my_arg ) or my_method my_arg.
Lint/RequireParentheses:
  enabled: true

Style/BracesAroundHashParameters:
  enabled: true

Style/IndentationConsistency:
  enabled: true
  EnforcedStyle: rails

Style/EmptyLinesAroundClassBody:
  enabled: true

Style/EmptyLinesAroundModuleBody:
  enabled: true