UNPKG

ember-cli

Version:

Command line tool for developing ambitious ember.js apps

14 lines (12 loc) 274 B
'use strict'; module.exports = function lintAddonsByType(addons, type, tree) { return addons.reduce((sum, addon) => { if (addon.lintTree) { let val = addon.lintTree(type, tree); if (val) { sum.push(val); } } return sum; }, []); };