From d96ae670abefe03f412275a4a857fa6bec8e13bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9s=20C=2E=20Viesca=20Ruiz?= Date: Thu, 2 Apr 2020 17:21:50 +0200 Subject: [PATCH] docs: fix fromat in rule documentation --- docs/rules/no-interpolation-inline-snapshot.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/docs/rules/no-interpolation-inline-snapshot.md b/docs/rules/no-interpolation-inline-snapshot.md index def3a9472..a5e660d89 100644 --- a/docs/rules/no-interpolation-inline-snapshot.md +++ b/docs/rules/no-interpolation-inline-snapshot.md @@ -45,10 +45,6 @@ expect(something).toMatchInlineSnapshot( ); ``` -\*Note that this rule will not trigger if the helper function is never used even -thought the `expect` will not execute. Rely on a rule like no-unused-vars for -this case. - ## When Not To Use It Don't use this rule on non-jest test files.