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 ```