# Docdata-order RuboCop configuration AllCops: TargetRubyVersion: 2.3 DisplayCopNames: true DisplayStyleGuide: true # We target 2.3, but still want to support 2.0. Gemspec/RequiredRubyVersion: Enabled: false Metrics/AbcSize: Max: 53 Metrics/BlockLength: Exclude: - 'spec/**/*.rb' Metrics/ClassLength: Enabled: false Metrics/LineLength: Enabled: false Metrics/MethodLength: Enabled: false Style/BlockDelimiters: Exclude: - 'spec/**/*.rb' Style/ExpandPathArguments: Enabled: false Style/GuardClause: Enabled: false Style/SafeNavigation: Enabled: false Style/StringLiterals: Enabled: false Style/SymbolArray: Enabled: false