update linting to allow dybnamic import. Recipe highlight still broken

This commit is contained in:
d98762625 2019-02-01 14:05:48 +00:00
parent 4bf2a29070
commit 9af5e40071
4 changed files with 96 additions and 68 deletions

View file

@ -37,7 +37,6 @@ class Recipe {
* @param {Object} recipeConfig
*/
_parseConfig(recipeConfig) {
recipeConfig.forEach((c) => {
this.opList.push({
name: c.op,
@ -46,7 +45,7 @@ class Recipe {
breakpoint: c.breakpoint,
disabled: c.disabled,
});
})
});
}
@ -90,9 +89,9 @@ class Recipe {
ingValues: o.args,
breakpoint: o.breakpoint,
disabled: o.disabled,
})
});
})
});
}