From 3211489a885c7af2805df7f8f9dcec0fe3c1ab16 Mon Sep 17 00:00:00 2001 From: fisker Date: Mon, 19 Feb 2024 12:16:32 +0800 Subject: [PATCH] Update docs --- docs/rules/filename-case.md | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/docs/rules/filename-case.md b/docs/rules/filename-case.md index 940f518ce2..c4f19c3267 100644 --- a/docs/rules/filename-case.md +++ b/docs/rules/filename-case.md @@ -126,11 +126,10 @@ For example: ] // Results -❌ FooBar.Test.js -❌ FooBar.TestUtils.js -❌ FooBar.testUtils.js +✅ FooBar.Test.js +✅ FooBar.TestUtils.js +✅ FooBar.testUtils.js ✅ FooBar.test.js -✅ FooBar.testutils.js ✅ FooBar.test-utils.js ✅ FooBar.test_utils.js ``` @@ -149,7 +148,6 @@ For example: ✅ FooBar.TestUtils.js ❌ FooBar.testUtils.js ❌ FooBar.test.js -❌ FooBar.testutils.js ❌ FooBar.test-utils.js ❌ FooBar.test_utils.js ```