From 37b5fb2e1e3b5ac699825f3fdf6551df2da4cd0d Mon Sep 17 00:00:00 2001 From: Jack Nagel Date: Sun, 10 May 2015 20:40:10 -0400 Subject: [PATCH] Stop enforcing the use of "fail" instead of "raise" We use raise everywhere else in the codebase. --- Library/.rubocop.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Library/.rubocop.yml b/Library/.rubocop.yml index a3e2800eba..176e43e050 100644 --- a/Library/.rubocop.yml +++ b/Library/.rubocop.yml @@ -113,3 +113,7 @@ Style/Tab: Enabled: false Style/TrailingBlankLines: Enabled: false + +# we use raise, not fail +Style/SignalException: + EnforcedStyle: only_raise