From 9f41d0dc6b19440536f2acb1542f669f696ee0bf Mon Sep 17 00:00:00 2001 From: Olle Jonsson Date: Mon, 14 Sep 2020 08:26:40 +0200 Subject: [PATCH] Add Lint/RaiseException rule - introduced in 0.81.0, https://github.com/rubocop-hq/rubocop/pull/7325 --- shared_rubocop.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/shared_rubocop.yml b/shared_rubocop.yml index 6a0c0d8..e57108a 100644 --- a/shared_rubocop.yml +++ b/shared_rubocop.yml @@ -143,3 +143,6 @@ Style/StabbyLambdaParentheses: Layout/SpaceInLambdaLiteral: Enabled: true EnforcedStyle: require_no_space + +Lint/RaiseException: + Enabled: true