We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
error-to-raise-arguments-error
1 parent fa869d3 commit bc7793aCopy full SHA for bc7793a
default-recommendations/exception-suggestions.rkt
@@ -6,7 +6,8 @@
6
7
(provide
8
(contract-out
9
- [exception-suggestions refactoring-suite?]))
+ [exception-suggestions refactoring-suite?]
10
+ [disabled-exception-suggestions refactoring-suite?]))
11
12
13
(require racket/string
@@ -68,5 +69,8 @@ conventions."
68
69
70
71
(define-refactoring-suite exception-suggestions
- #:rules (literal-exception-handler-to-lambda
72
- error-to-raise-arguments-error))
+ #:rules (literal-exception-handler-to-lambda))
73
+
74
75
+(define-refactoring-suite disabled-exception-suggestions
76
+ #:rules (error-to-raise-arguments-error))
0 commit comments