Skip to content

Commit e790c8c

Browse files
authored
Fix error message for options_resolvers/ignore
1 parent b9f13d1 commit e790c8c

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)