File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ const {
21
21
*/
22
22
/**
23
23
* @returns {string | undefined } undefined or error message
24
- * @param {any } config naming pattern object configurated by user
24
+ * @param {any } config naming pattern object configured by user
25
25
* @param {validator } keyValidator settings key validator
26
26
* @param {validator } valueValidator settings value validator
27
27
*/
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ const { PREFINED_MATCH_SYNTAX_ERROR_MESSAGE } = require('../constants/message');
19
19
* @param {rule } rule original rule
20
20
* @param {string } filenameWithPath filename with path
21
21
* @returns {rule } new rule
22
- * @throws {Error } if a cprefined match syntax referenced in the naming pattern is not found in the filename pattern
22
+ * @throws {Error } if a prefined match syntax referenced in the naming pattern is not found in the filename pattern
23
23
*/
24
24
const transformRuleWithPrefinedMatchSyntax = (
25
25
[ filenamePattern , namingPattern ] ,
Original file line number Diff line number Diff line change @@ -68,10 +68,10 @@ const pipe =
68
68
fns . reduce ( ( v , f ) => f ( v ) , x ) ;
69
69
70
70
/**
71
- * Checks if a value isnt an empty value
71
+ * Checks if a value isn't an empty value
72
72
*
73
73
* @param {any } x - The value to check
74
- * @returns {boolean } - Returns true if the value isnt an empty value, false otherwise
74
+ * @returns {boolean } - Returns true if the value isn't an empty value, false otherwise
75
75
*/
76
76
const isNotEmpty = pipe ( isEmpty , not ) ;
77
77
You can’t perform that action at this time.
0 commit comments