-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix a typo #16
Fix a typo #16
Conversation
@@ -60,7 +60,7 @@ module.exports = function simpleJslint(options) { | |||
} | |||
|
|||
if (!file.isBuffer()) { | |||
var err = new gutil.PluginError(pluginName, "This plugin requires bufferred files", {}); | |||
var err = new gutil.PluginError(pluginName, "This plugin requires buffered files", {}); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Perhaps we should include the name and path of the non-buffered file in this error message? It would have been easier to diagnose https://github.com/pandell/node-repo-init/pull/148 if this information had been included in the error.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@timphillips Great idea, let me add that.
👍 good change |
@timphillips Addressed. Updated message shows:
|
Thanks for the update. 👍 from me. |
But seriously, who adds |
Ready for review.