We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7381631 + 48efc05 commit 89098dcCopy full SHA for 89098dc
lib/node_modules/@stdlib/_tools/lint/pkg-json-names/lib/validate.js
@@ -69,7 +69,7 @@ function validate( opts, options ) {
69
if ( hasOwnProp( options, 'ignore' ) ) {
70
opts.ignore = options.ignore;
71
if ( !isString( opts.ignore ) && !isStringArray( opts.ignore ) ) {
72
- return new TypeError( format( 'invalid option. `%s` option must be a string or array of strings. Option: `%s`.', 'ignore', opts.ignore ) );
+ return new TypeError( format( 'invalid option. `%s` option must be a string or an array of strings. Option: `%s`.', 'ignore', opts.ignore ) );
73
}
74
75
return null;
0 commit comments