Skip to content

Commit 84656fb

Browse files
committed
docs: update docs for rule folder-match-with-fex
1 parent 5ca8648 commit 84656fb

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ Then configure the rules you want to use under the rules section.
7777

7878
## Supported Rules
7979

80-
- [check-file/folder-match-with-fex](docs/rules/folder-match-with-fex.md): Enforce a consistent naming pattern for the folder of the specified file extension
80+
- [check-file/folder-match-with-fex](docs/rules/folder-match-with-fex.md): Enforce a consistent naming pattern for the folder of the specified file
8181
- [check-file/filename-naming-convention](docs/rules/filename-naming-convention.md): Enforce a consistent naming pattern for the filename of the specified file
8282
- [check-file/no-index](docs/rules/no-index.md): A file cannot be named "index"
8383
- [check-file/folder-naming-convention](docs/rules/folder-naming-convention.md): Enforce a consistent naming pattern for the name of the specified folder

lib/rules/folder-match-with-fex.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @file The folder should match the naming pattern specified by the file extension
2+
* @file The folder should match the naming pattern specified by its file
33
* @author Huan Luo
44
*/
55
'use strict';
@@ -25,7 +25,7 @@ module.exports = {
2525
type: 'layout',
2626
docs: {
2727
description:
28-
'The folder should match the naming pattern specified by the file extension',
28+
'The folder should match the naming pattern specified by its file',
2929
category: 'Layout & Formatting',
3030
recommended: false,
3131
url: getDocUrl('folder-match-with-fex'),

tests/lib/rules/folder-match-with-fex.posix.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @file The folder should match the naming pattern specified by the file extension
2+
* @file The folder should match the naming pattern specified by its file
33
* @author Huan Luo
44
*/
55
'use strict';

tests/lib/rules/folder-match-with-fex.windows.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @file The folder should match the naming pattern specified by the file extension
2+
* @file The folder should match the naming pattern specified by its file
33
* @author Huan Luo
44
*/
55
'use strict';

0 commit comments

Comments
 (0)