https://github.com/wikimedia/operations-puppet
Raw File
Tip revision: 6047bb13f8a5775a74bc0cf098433d4f4aee72a0 authored by Andrew Otto on 31 August 2015, 14:02:08 UTC
require_package openjdk-7 in zookeeper role
Tip revision: 6047bb1
.rubocop.yml
inherit_from: .rubocop_todo.yml

# Copied from
# https://www.mediawiki.org/wiki/Manual:Coding_conventions/Ruby#Base_configuration

AllCops:
  # Only enforce rules that have an entry in the style guide
  StyleGuideCopsOnly: true

# Uncomment when lines are 100 characters or less
# Metrics/LineLength:
#   Max: 100

Metrics/MethodLength:
  Enabled: false

Style/Alias:
  Enabled: false

Style/SignalException:
  Enabled: false

# Pick one and stay consistent
Style/StringLiterals:
  EnforcedStyle: single_quotes
#  EnforcedStyle: double_quotes

Style/TrivialAccessors:
  ExactNameMatch: true
back to top