From 0bfbf54e3dadda29bbde03b44515ccf25ea719a1 Mon Sep 17 00:00:00 2001 From: Mike Moore Date: Mon, 30 Oct 2023 23:59:00 -0600 Subject: [PATCH] fix-rubocop-warning --- .rubocop.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.rubocop.yml b/.rubocop.yml index 3b3e25d..d9fc4e1 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -10,20 +10,20 @@ AllCops: - "Rakefile" - "Gemfile" -Documentation: - Enabled: false Layout/SpaceAroundOperators: Enabled: false -Metrics/CyclomaticComplexity: - Max: 10 -Metrics/PerceivedComplexity: - Max: 10 Metrics/AbcSize: Max: 25 +Metrics/CyclomaticComplexity: + Max: 10 Metrics/MethodLength: Max: 15 -Style/StringLiterals: - EnforcedStyle: double_quotes +Style/Documentation: + Enabled: false +Metrics/PerceivedComplexity: + Max: 10 Style/MethodDefParentheses: EnforcedStyle: require_no_parentheses +Style/StringLiterals: + EnforcedStyle: double_quotes