Skip to content

Commit

Permalink
docs: update docs for rule folder-match-with-fex
Browse files Browse the repository at this point in the history
  • Loading branch information
dukeluo committed Jun 10, 2023
1 parent 5ca8648 commit 84656fb
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ Then configure the rules you want to use under the rules section.

## Supported Rules

- [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
- [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
- [check-file/filename-naming-convention](docs/rules/filename-naming-convention.md): Enforce a consistent naming pattern for the filename of the specified file
- [check-file/no-index](docs/rules/no-index.md): A file cannot be named "index"
- [check-file/folder-naming-convention](docs/rules/folder-naming-convention.md): Enforce a consistent naming pattern for the name of the specified folder
Expand Down
4 changes: 2 additions & 2 deletions lib/rules/folder-match-with-fex.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @file The folder should match the naming pattern specified by the file extension
* @file The folder should match the naming pattern specified by its file
* @author Huan Luo
*/
'use strict';
Expand All @@ -25,7 +25,7 @@ module.exports = {
type: 'layout',
docs: {
description:
'The folder should match the naming pattern specified by the file extension',
'The folder should match the naming pattern specified by its file',
category: 'Layout & Formatting',
recommended: false,
url: getDocUrl('folder-match-with-fex'),
Expand Down
2 changes: 1 addition & 1 deletion tests/lib/rules/folder-match-with-fex.posix.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @file The folder should match the naming pattern specified by the file extension
* @file The folder should match the naming pattern specified by its file
* @author Huan Luo
*/
'use strict';
Expand Down
2 changes: 1 addition & 1 deletion tests/lib/rules/folder-match-with-fex.windows.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @file The folder should match the naming pattern specified by the file extension
* @file The folder should match the naming pattern specified by its file
* @author Huan Luo
*/
'use strict';
Expand Down

0 comments on commit 84656fb

Please sign in to comment.