From aa463971385def1793471b60274f791b7c316cc0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dorian=20Mari=C3=A9?= Date: Wed, 28 Aug 2024 21:55:06 +0200 Subject: [PATCH] disable additional rubocop cops --- .rubocop.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.rubocop.yml b/.rubocop.yml index 9e28bca..5381a7b 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -24,10 +24,14 @@ Layout/MultilineOperationIndentation: Enabled: false Lint/EmptyClass: Enabled: false +Lint/MissingSuper: + Enabled: false Lint/PercentStringArray: Enabled: false Lint/ShadowingOuterLocalVariable: Enabled: false +Lint/SuppressedException: + Enabled: false Metrics/AbcSize: Enabled: false Metrics/BlockLength: @@ -48,10 +52,14 @@ Naming/FileName: Enabled: false Naming/MethodParameterName: Enabled: false +Naming/VariableNumber: + Enabled: false Performance/UnfreezeString: Enabled: false RSpec/AnyInstance: Enabled: false +RSpec/ContextWording: + Enabled: false RSpec/DescribeClass: Enabled: false RSpec/ExampleLength: @@ -96,5 +104,5 @@ require: - rubocop-rspec - rubocop-rspec_rails - rubocop-capybara -Lint/MissingSuper: +Style/CaseEquality: Enabled: false