From e039fed0f1cb1888d272ea38dcb6aef0ba5217ef Mon Sep 17 00:00:00 2001 From: Simen Bekkhus Date: Sat, 11 Aug 2018 16:32:46 +0200 Subject: [PATCH] chore: fix lint --- docs/rules/prefer-strict-equal.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/rules/prefer-strict-equal.md b/docs/rules/prefer-strict-equal.md index 0436b1c0a..7d475e84a 100644 --- a/docs/rules/prefer-strict-equal.md +++ b/docs/rules/prefer-strict-equal.md @@ -1,7 +1,9 @@ # Suggest using `toStrictEqual()` (prefer-strict-equal) `toStrictEqual` not only checks that two objects contain the same data but also -that they have the same structure. It is common to expect objects to not only have identical values but also to have identical keys. A stricter equality will catch cases where two objects do not have identical keys. +that they have the same structure. It is common to expect objects to not only +have identical values but also to have identical keys. A stricter equality will +catch cases where two objects do not have identical keys. ## Rule details