.rubocop.yml in rapporteur-3.6.4 vs .rubocop.yml in rapporteur-3.7.0

- old
+ new

@@ -1,37 +1,30 @@ +--- + inherit_gem: rubocop-rails_config: - "config/rails.yml" AllCops: - TargetRubyVersion: 2.3 Exclude: - 'gemfiles/*' + - 'gemfiles/**/*' + - 'vendor/**/*' + TargetRubyVersion: 2.5 Layout/CaseIndentation: - Enabled: true - EnforcedStyle: end + EnforcedStyle: "end" +Layout/EmptyLinesAroundAccessModifier: + EnforcedStyle: "around" + Layout/EndOfLine: EnforcedStyle: "lf" -Layout/IndentHeredoc: +Layout/HeredocIndentation: EnforcedStyle: "squiggly" Layout/IndentationConsistency: EnforcedStyle: "normal" - -Metrics/BlockLength: - Exclude: - - 'Rakefile' - - '**/*.rake' - - 'spec/**/*.rb' - -Metrics/ModuleLength: - Exclude: - - 'spec/**/*.rb' - -Style/SafeNavigation: - Enabled: false Style/StringLiterals: EnforcedStyle: "single_quotes"