https://github.com/wikimedia/operations-puppet
Raw File
Tip revision: 3e24b2eed8f46a2fc9f69a0c60e4f2aae828a7a2 authored by lokal-profil on 22 June 2015, 09:59:21 UTC
Add DCAT-AP for Wikibase
Tip revision: 3e24b2e
.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