.rubocop.yml in jekyll_flexible_include-2.0.15 vs .rubocop.yml in jekyll_flexible_include-2.0.18

- old
+ new

@@ -1,8 +1,11 @@ require: - - rubocop-rspec # - rubocop-jekyll + - rubocop-md + - rubocop-performance + - rubocop-rake + - rubocop-rspec # inherit_gem: # rubocop-jekyll: .rubocop.yml AllCops: @@ -18,19 +21,29 @@ Enabled: false Gemspec/RequireMFA: Enabled: false +Layout/InitialIndentation: + Exclude: + - README.md + Layout/HashAlignment: - EnforcedHashRocketStyle: table + EnforcedColonStyle: table + Exclude: + - jekyll_flexible_include_plugin.gemspec Layout/LineLength: Max: 150 Layout/MultilineMethodCallIndentation: Enabled: false +Lint/RedundantCopDisableDirective: + Exclude: + - jekyll_flexible_include_plugin.gemspec + Metrics/AbcSize: Max: 45 Metrics/BlockLength: Exclude: @@ -40,14 +53,14 @@ Metrics/ClassLength: Exclude: - spec/**/* Metrics/CyclomaticComplexity: - Max: 10 + Max: 20 Metrics/MethodLength: - Max: 30 + Max: 40 Metrics/PerceivedComplexity: Max: 15 Naming/FileName: @@ -59,9 +72,12 @@ RSpec/MultipleExpectations: Max: 15 Style/CommandLiteral: + Enabled: false + +Style/CommentedKeyword: Enabled: false Style/Documentation: Enabled: false