Skip to content

Commit

Permalink
style: fix prettier errors
Browse files Browse the repository at this point in the history
  • Loading branch information
pvdlg committed Nov 7, 2018
1 parent 669c9ed commit ae4995c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/plugins/index.js
Expand Up @@ -56,8 +56,8 @@ module.exports = (context, pluginsPath) => {
} else {
// If an object is passed and the path is missing, merge it with step options
if (isPlainObject(options[type]) && !options[type].path) {
options[type] = castArray(plugins[type]).map(
plugin => (plugin ? [plugin[0], Object.assign(plugin[1], options[type])] : plugin)
options[type] = castArray(plugins[type]).map(plugin =>
plugin ? [plugin[0], Object.assign(plugin[1], options[type])] : plugin
);
}
if (!validateStep({multiple, required}, options[type])) {
Expand Down

0 comments on commit ae4995c

Please sign in to comment.