From 9a9027990fb73be6a5d555e452295158ded696ef Mon Sep 17 00:00:00 2001 From: Dave Corson-Knowles Date: Tue, 17 Sep 2024 16:28:08 -0700 Subject: [PATCH] Sort RuboCop config file --- .rubocop.yml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/.rubocop.yml b/.rubocop.yml index 4795eec03..e5b68d25d 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -101,34 +101,34 @@ RSpec: - expect_no_offenses - expect_offense +RSpec/DescribeClass: + Exclude: + - spec/project/**/*.rb + RSpec/ExampleLength: CountAsOne: - heredoc Max: 11 -RSpec/DescribeClass: - Exclude: - - spec/project/**/*.rb - RSpec/MultipleExpectations: Max: 2 +RSpec/SpecFilePathFormat: + Exclude: + - spec/rubocop/cop/rspec/mixin/**/*.rb + # `expect_offense` does not use Kernel#format or String#% Style/FormatStringToken: Exclude: - spec/rubocop/**/*.rb -Style/RequireOrder: - Enabled: true - -RSpec/SpecFilePathFormat: - Exclude: - - spec/rubocop/cop/rspec/mixin/**/*.rb - Style/NumberedParameters: Enabled: true EnforcedStyle: disallow +Style/RequireOrder: + Enabled: true + # Enable RuboCop's pending cops up to v1.63 Gemspec/DeprecatedAttributeAssignment: {Enabled: true}