Skip to content

Commit 02c7f94

Browse files
Merge pull request #39 from levity/patch-1
Fix error message for options_resolvers/ignore
2 parents b9f13d1 + e790c8c commit 02c7f94

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/options_resolvers/ignore.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export default function ignore(value/* , currentConfig */) {
1616
return requiredOption;
1717
}
1818

19-
throw new Error(`Configuration file for 'generateScopedName' is not exporting a string nor a function`);
19+
throw new Error(`Configuration file for 'ignore' is not exporting a string nor a function`);
2020
} else if (isString(value)) {
2121
return value;
2222
} else {

0 commit comments

Comments
 (0)