https://github.com/wikimedia/operations-puppet
Raw File
Tip revision: 4ec6019e19b2b237ad35c5fb76a5d2df8747cb9f authored by Ori Livneh on 13 August 2015, 19:59:18 UTC
xenon: fix for xenon-generate-svgs
Tip revision: 4ec6019
.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