https://github.com/wikimedia/operations-puppet
Raw File
Tip revision: b041cb32c1dc45c8fe805155b9c1038babe215b0 authored by dzahn on 06 August 2015, 22:47:17 UTC
admin: non-sudo shell for johnflewis on fermium
Tip revision: b041cb3
.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